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.
|
feedback
|
|
Since Java 1.5, yes: http://download.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#quote(java.lang.String)
| |||||
feedback
|
|
Difference between Pattern.quote and Matcher.quoteReplacement was not clear to me before I saw following example
| |||||
feedback
|
|
I think what you're after is \Q$5\E. Also see Pattern.quote(s) introduced in J5. See Pattern javadoc for details. | |||||||
feedback
|