I want a regex that matches a square bracket ("["). I haven't found one yet. I think I tried all possibilities, but haven't found the right one. What is a valid regex for this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
How about using backslash (\) in front of the square bracket. Normally square brackets match a character class. |
|||||||||||
|
|
Are you escaping it with "\"?
Here's a helpful resource to get started with Regular Expressions: |
|||
|
|
|
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: |
|||
|
|
|
In general, when you need a character that is "special" in regexes, just prefix it with a |
|||
|
|
|
For a US number want a '[' ']' '(' ')' '-' ' ' I have done this:
like:
|
||||
|