Tuesday, April 7, 2009

PHP strip everything but numbers

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.

No comments: