Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

7 Answers

up vote 19 down vote accepted

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

share|improve this answer
5  
In case you are trying to write this regex in C# you have have to use \\ in front of the square bracket. – Shrewd Demon Jan 25 '11 at 5:26
1  
Actually I don't know where it works and why did the answer receive such a high rank. – Vitali Pom Dec 1 '12 at 12:57
"\[" works indeed! or @"[" – Mvision Apr 25 at 16:11

Try using \\\\[, or simply \\[.

share|improve this answer

Are you escaping it with "\"?

/\[/

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

Regular-Expressions.info

share|improve this answer

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

share|improve this answer

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

share|improve this answer

For a US number want a '[' ']' '(' ')' '-' ' ' I have done this:

var regex = /^\(?\[(\d{3})\]\)?[- ]?\[(\d{3}\])[- ]?(\d{4})?[0-9a-zA-Z' '-]{5,}$/;

like:

function validateWithExt (phone) 
{
    var regex =  /^\(?\[(\d{3})\]\)?[- ]?\[(\d{3}\])[- ]?(\d{4})?[0-9a-zA-Z' '-]{5,}$/;

    if (regex.test(phone)) 
    {
     return  true;   
    } 
    else 
    {
        return false;
    }
}
share|improve this answer
function validateWithExt (phone) { var regex = /^(?[(\d{3})])?[- ]?[(\d{3}])[- ]?(\d{4})?[0-9a-zA-Z' '-]{5,}$/; if (regex.test(phone)) { return true; } else { return false; } } – priya Mar 29 '11 at 13:23

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

\[ or \\[ ?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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