我在搜索特殊字符“(”时遇到了一些问题。
我得到了一个java.util.regex.PatternSyntaxException exception has occurred
。
这可能与“(”被视为特殊字符有关。我对模式表达式不太擅长。有人可以帮我正确搜索吗对于转义字符?
// I need to split the string at the "("
String myString = "Room Temperature (C)";
String splitList[] = myString.split ("("); // i got an exception
// I tried this but got compile error
String splitList[] = myString.split ("\(");