Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Would this be the correct regexp to allow A-Z a-z 0-9 and symbols #&()-\;,.'" and spaces?

I'm struggling with the ' and " inside the regexp. Is what I've done correct? Note the \' and \". It just doesn't seem right. Whats the right way to do it?

if (preg_match('/^[a-z0-9#&()-\;,.\'\" ]+$/i', $username) )   
{   
    echo "Good";   
}   
else   
{   
    echo "Bad";   
} 
share|improve this question
2  
the dash - should be at the beginning or the end of the regexp to avoid being interpreted as a range. – Aziz Sep 11 '10 at 6:32
The dash doesn't need to be escaped if it's the last character in a character class – NullUserException Sep 11 '10 at 7:35

2 Answers

up vote 2 down vote accepted

The dash should be escaped, and the double quote does not need to be. Bizarrely, you need to quadruple escape the backslash before the semi-colon. Otherwise it is interpreted as if you are escaping the semi-colon and is ignored.*

'/^[a-z0-9#&()\-\\\\;,.\'" ]+$/i'

You can also put an unescaped dash at the beginning of a character class, though that's a bit obscure and may momentarily confuse someone unaware of that option. It works because a dash at the start cannot be part of a valid character range, so it can only be a literal dash character.

'/^[-a-z0-9#&()\\\\;,.\'" ]+$/i'

* The \\\\; is reduced to \\; by PHP before the regex engine sees it. The regex engine then reduces \\; to \;. Thus, four backslashes! A single backslash \; becomes simply ;. The same goes for \\;—PHP reduces that to \; and then the regex engine interprets \; as a plain semi-colon ;. No less than four will do.

† Actually, I lied. You can get away with three backslashes. But then you're abusing the leniency of PHP's parser a bit. Four is definitely best.

share|improve this answer
I kept getting : Warning: preg_match() [function.preg-match]: No ending delimiter '^'. So i did '/^[a-z0-9#&()\-\\\\;,.\'" ]+$/i' Note the / at the beginning. Is this right? – Norman Sep 11 '10 at 6:47
Yes, my bad. I lost your starting slash when I copy-and-pasted. – John Kugelman Sep 11 '10 at 6:50
The semicolon does not need to be escaped at all. – Gumbo Sep 11 '10 at 7:04
@Gumbo I agree. The OP is trying to match a literal backslash, and happened to place it before the semi-colon in his regex. – John Kugelman Sep 11 '10 at 7:14
Before I go :), the right way to allow new lines (the enter key) in the regexp above would be like this, right? '/^[a-z0-9#&()\-\\\\;,.\'"\r\n ]+$/i' I added \r\n. No harm if done this way? – Norman Sep 11 '10 at 7:40
show 1 more comment

Brackets also needed to be escaped

'/^[a-z0-9#&\(\)\-;,.\'" ]+$/i'
share|improve this answer
1  
Incorrect. Parentheses are not special inside character classes. – Ben Blank Sep 11 '10 at 6:46
This answer too gives me the error : preg_match() [function.preg-match]: No ending delimiter '^' found in... – Norman Sep 11 '10 at 6:50

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.