I need to replace a substring within double parentheses with an empty one. I use:
source = source.replaceAll("\(.+?\)", "");
The substrings within single parentheses are removed. Instead, when I try with a substring within double parentheses the entire substring is removed but the last ')' remains.
What's wrong here?
Thanks in advance.
blah ((yakkety)) somethingintoblah (()) somethingOR do you mean changeblah (yackittee) other-thingintoblah other-thing??? or where in between?? – Code Jockey Sep 21 '11 at 20:50