What is the regular expression for matching '(' in a string?
Following is the scenario :
I have a string
str = abc(efg);
I want to split the string at '(' using regular expression.For that i am using
Arrays.asList(Pattern.compile("/(").split(str))
But i am getting the following exception.
java.util.regex.PatternSyntaxException: Unclosed group near index 2
/(
Escaping '(' doesn't seems to work.
Pattern.quote("("), or simply"\\(". Note that there are 2 backslashes - extra one for the Java compiler, to understand the string correctly. Your example code is using a slash, not a backslash. More importantly, you can simple usestring.split... – Kobi Apr 12 '11 at 10:57