Hi!
I have been playing with JFlex and at this moment I want to get a regex that match a square bracket "[", but I don't find it. I think I tried all posivilities but the right.
Some help?
|
|
|
|
|
|
|
How about using backslash (\) in front of the square bracket. Normally square brackets match a character class. |
||
|
|
|
|
did you tried \\[ or simply \[ ? |
||
|
|
|
|
does it work with an antislash before the '[' ?
|
||
|
|
|
|
Are you escaping it with "\"?
Here's a helpful resource to get started with Regular Expressions: |
||
|
|
|
|
In general, when you need a character that is "special" in regexes, just prefix it with a |
||
|
|
|
|
If you're looking to find both variations of the square brackets at the same time, you can use the following pattern which defines a range of either the "[" sign or the "]" sign: |
||
|
|
