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.

I'm not an expert with regex:( I'm trying to to strip all characters from the string except for alpanumeric and underscore and dash. Is this the correct syntax?:

preg_replace("/[^a-z0-9_-]+/i", "", $string);
share|improve this question
4  
It would take 2s to test it and know the result. – Cyril N. May 19 '11 at 18:29
hmm. good point. – Stann May 19 '11 at 18:30
1  
Have you tried it? – Arjan May 19 '11 at 18:30
yep. just tried it - works – Stann May 19 '11 at 18:35
@downvoter - get a life – Stann May 19 '11 at 18:56

3 Answers

up vote 6 down vote accepted

Yes, but it can be optimised slightly:

preg_replace('/[^\w-]/', '', $string);

\w matches alphanumeric characters and underscores. This has the added advantage of allowing accented characters if your locale allows.

share|improve this answer
don't you have to add + after square brackets to specify that pattern inside of square brackets may repeat? – Stann May 19 '11 at 18:37
@Andre Regex patterns in PHP (as opposed to Javascript for example) are automatically global. This means that every character matched by a regex will be replaced. So, taking a string .], this regex matches the ., replaces it with a blank string, then matches the ] and does the same. – lonesomeday May 19 '11 at 18:40
Thanks for explanation!:) – Stann May 19 '11 at 18:57

Yes. :)

http://codepad.org/lkJTRP0P

share|improve this answer

What you have looks like it will work. You may want to add spaces since they're not an alphanumeric character:

preg_replace("/[^a-z0-9_-\s]+/i", "", $string);
share|improve this answer
AFAIK - i modifier stands for case insensitive? - right? – Stann May 19 '11 at 18:36
i modifier is "case insensitive" – Mel May 19 '11 at 18:36
The /i means it's already case-insensitive, no need to add capitals. – cOle2 May 19 '11 at 18:38
oh right, my oversight. fixed now. – Eric Conner May 19 '11 at 18:39

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.