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.
|
Since Java 1.5, yes:
|
|||||||||
|
|
Difference between Pattern.quote and Matcher.quoteReplacement was not clear to me before I saw following example
|
|||||
|
|
I think what you're after is \Q$5\E. Also see Pattern.quote(s) introduced in J5. See Pattern javadoc for details. |
|||||||
|
|
First off, if
it won't put a 1 at the end. It will look at the search regex for the first matching group and sub THAT in. That's what $1, $2 or $3 means in the replacement text: matching groups from the search pattern. I frequently plug long strings of text into .properties files, then generate email subjects and bodies from those. Indeed, this appears to be the default way to do i18n in Spring Framework. I put XML tags, as placeholders, into the strings and I use replaceAll() to replace the XML tags with the values at runtime. I ran into an issue where a user input a dollars-and-cents figure, with a dollar sign. replaceAll() choked on it, with the following showing up in a stracktrace:
In this case, the user had entered "$3" somewhere in their input and replaceAll() went looking in the search regex for the third matching group, didn't find one, and puked. Given:
replacing
with
solved the problem. The user could put in any kind of characters, including dollar signs, without issue. It behaved exactly the way you would expect. |
|||
|
|
|
Look, I'm the first who answer you correct. To have protected pattern you may replace all symbols with "\\\\", except digits and letters. And after that you can put in that protected pattern your special symbols to make this pattern working not like stupid quoted text, but really like a patten, but your own. Without user special symbols. Greeting from Moscow.
|
|||
|