Skip to content

Instantly share code, notes, and snippets.

@xexi
Last active February 2, 2017 06:29
Show Gist options
  • Save xexi/275b94bba64484c3244581617853134d to your computer and use it in GitHub Desktop.
Save xexi/275b94bba64484c3244581617853134d to your computer and use it in GitHub Desktop.
function textbraceTrim(text){
let trimed = text;
if(text !== null && text !== '') {
let start_index = text.indexOf('(');
let end_index = text.indexOf(')') + 1;
trimed = text.substring(0, start_index) + text.substring(end_index, text.length);
trimed = trimed.trim();
}
return trimed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment