I have a string. How I can check if the string is a regular expression or contains regular expression or it is a normal string?
|
The only reliable check you could do is if the
Note, however, that this will result in The only cases where this will return |
|||||||||||||||||||||
|
|
This is ugly but will detect simple regular expressions (with the caveat they must be designed for Java i.e. have the relevant back-slash character escaping).
|
|||
|
|
there is no difference between a 'normal' sting and a regular expression. A regular expression is just a normal string which is used as a pattern to match occurrences of the pattern in another string. As others have pointed out, it is possible that the string might not be a valid regular expression, but I think that is the only check you can do. If it is valid then there is no way to know if it is a regular expression or just a normal string because it will be a regular expression It is just a normal string which is interpreted in a specific way by the regex engine. for example "blah" is a regular expression which will only match the string "blah" where ever it occurs in another string. When looked at this way, you can see that a regular expression does not need to contain any of the 'special characters' that do more advanced pattern matching, and it will only match the string in the pattern |
|||||||||||
|
|
Maybe you'd try to compile that regular expression using regexp package from Apache ( http://jakarta.apache.org/regexp/ ) and, if you get an exception then that's not a valid regexp so you'd say it's a normal string.
Obviously, the user would have typed an invalid regexp and you'd be handling it as a normal string. |
|||
|
|
|||||
|
String s = "my string with \[.\] and another [^b].";How does he/she know that the string contains regular expression? Am I right or am I right? lol – Buhake Sindi Jun 14 '11 at 9:16