vote up 1 vote down star

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?

flag

6 Answers

vote up 2 vote down check

How about using backslash (\) in front of the square bracket. Normally square brackets match a character class.

link|flag
vote up 1 vote down

did you tried \\[ or simply \[ ?

link|flag
vote up 0 vote down

does it work with an antislash before the '[' ?

\[ or \\[ ?

link|flag
vote up 1 vote down

Are you escaping it with "\"?

/\[/

Here's a helpful resource to get started with Regular Expressions:

Regular-Expressions.info

link|flag
vote up 0 vote down

In general, when you need a character that is "special" in regexes, just prefix it with a \. So a literal [ would be \[.

link|flag
vote up 0 vote down

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: /[\[\]]/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.