Stripping non digits in PHP is easy and smooth.
Here is the code:
$digits = eregi_replace('[^[:digit:]]', '', $string );
So having a $string = 'ab345dc-.';
The result would be: $digits = 345;
Using eregi_replace all the non digits charactes will be removed. Filter out everything but numbers using this code.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment