|
Hi everyone,
Can someone please let me know of a regexp that i can use to strip out any non-numeric characters from a telephone number?
I was using this:
$tel = preg_replace('[^0-9]', '', $tel);
But it suddenly stopped working and i can't figure out why!
Last edited by fambi; 03-16-2005 at 12:46 PM..
|