java escape text in regular expression

Java's a built-in way to escape arbitrary text so that it can be included in a regular expression-
For example, users enter "$5", we can match that exactly rather than a "5" after the end of input.


Just do this : to escape text in regex
Pattern.quote("$5");

No comments :

Post a Comment

Your Comment and Question will help to make this blog better...