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 trying to remove everything from a string but just numbers (0-9).

I thought this would work..

echo preg_replace("[^0-9]","",'604-619-5135');

But it echos "604-619-5135". What am I missing???

share|improve this question

2 Answers

up vote 16 down vote accepted

Try this:

preg_replace("/[^0-9]/","",'604-619-5135');

preg_replace uses PCREs which generally start and end with a /.

share|improve this answer
The inner/double quoting doesn't have anything to do with PCRE tho. Apparently (in the days before (?flags)) the people who designed/wrote the function/API thought it was a good idea to pass the regex flags with the double quoted /flags form instead of using an extra function parameter. – Qtax Jul 7 '11 at 0:28
1  
@Qtax: good point, yeah I know that's where we get the word "grep" from ("g/re/p") – Chris Jul 7 '11 at 0:39

I believe you need to enclose your express with the /

echo preg_replace("/[^0-9]/","",'604-619-5135');
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.