I am trying to look for specific phrase inside large text, but the phrase may contain characters like "[", "(", "*", ... like "name1 (name2", but it causes an invalid exception when looking for it. Here is my code :
Pattern myPattern = Pattern.compile( "\\b" + phrase + "\\b" ); // Exception
Matcher myMatcher = myPattern.matcher( largeText );
I have tried to use quote(...) to fix such characters but it didn't work :
phrase = Pattern.quote( phrase );
How can i fix this to allow such characters ?
\b, cutting your matches off? – BoltClock♦ Feb 27 '11 at 9:51\bmatch empty strings, they are only used to restrict the pattern to match in specific places, but they don't "consume" anything. – Sergey Tachenov Feb 27 '11 at 10:00