Skip to content

Instantly share code, notes, and snippets.

@raazon
Last active October 16, 2018 07:01
Show Gist options
  • Save raazon/8ea8257ca8abf00d2a0294bf236528ec to your computer and use it in GitHub Desktop.
Save raazon/8ea8257ca8abf00d2a0294bf236528ec to your computer and use it in GitHub Desktop.
$str = 'Phone Number: 1 (100) 123-4567';
preg_match_all('!\d+!', $str, $matches);
$get_numbers = implode(" ",$matches[0]);
$get_value = preg_replace('/\s+/', '', $get_numbers); // remove all whitespace between numbers
echo $get_value;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment