Revision: 5860
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at April 8, 2008 15:06 by Tate
Initial Code
$string = "(032)555-5555"; $new_string = ereg_replace("[^0-9]", "", $string ); echo $new_string;
Initial URL
Initial Description
Make it $new_string = ereg_replace("[^A-Za-z0-9]", "", $string );
Initial Title
Remove everything but numbers from a string
Initial Tags
Initial Language
PHP