What I'd like to do remove the part of a string that is contained in brackets.
So for example be able to go from "Hello (World)" to "Hello".
I am using var input2 = '\([0-9a-zA-z]*\)';
as my expression statement, and using regular expressions to match this pattern.
Can someone tell me what I'm going wrong? I must be escaping the "(" and ")" incorrectly.