Does Java have a built-in way to escape arbitrary text so that it can be included in a regular expression? For example, if my users enter "$5", I'd like to match that exactly rather than a "5" after the end of input.

link|improve this question

feedback

3 Answers

up vote 74 down vote accepted

Since Java 1.5, yes:

http://download.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#quote(java.lang.String)

Pattern.quote("$5");
link|improve this answer
1  
Other's have posted equally viable options, so really pick the one that makes the code prettiest to you! :-) – Mike Stone Sep 12 '08 at 23:51
feedback

Difference between Pattern.quote and Matcher.quoteReplacement was not clear to me before I saw following example

s.replaceFirst(Pattern.quote("text to replace"), Matcher.quoteReplacement("replacement text"));

link|improve this answer
2  
Specifically, Pattern.quote replaces special characters in regex search strings, like .|+() etc, and Matcher.quoteReplacement replaces special characters in replacement strings, like \1 for backreferences. – Steven Nov 18 '11 at 18:12
feedback

I think what you're after is \Q$5\E. Also see Pattern.quote(s) introduced in J5.

See Pattern javadoc for details.

link|improve this answer
I'm curious if there's any difference between this and using the LITERAL flag, since the javadoc says there is no embedded flag to switch LITERAL on and off: java.sun.com/j2se/1.5.0/docs/api/java/util/regex/… – Chris Mazzola Aug 6 '09 at 20:51
1  
Note that literally using \Q and \E is only fine if you know your input. Pattern.quote(s) will also handle the case where your text actually contains these sequences. – Jeremy Huiskamp Feb 14 '11 at 2:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.