Strip all characters out that are not numeric
Login or Register to Bookmark this snippet
This function strips out all characters that are not numeric for a given string.
<?php
function numericOnly($string) {
//function to strip characters other than numerals from a string
return $numString;
}
//usage
$string = "f9s9848d8f--432-d4";
$string = numericOnly($string);
echo $string;
//echos 9984884324
?>
Added by JC on 12th November, 2007
There are no comments about this snippet.
You must be registered and logged in to post a comment.
Login here to post a comment