Skip to content

Instantly share code, notes, and snippets.

@plasticbrain
Created October 10, 2012 07:36
Show Gist options
  • Select an option

  • Save plasticbrain/3863756 to your computer and use it in GitHub Desktop.

Select an option

Save plasticbrain/3863756 to your computer and use it in GitHub Desktop.
PHP: (REGEX/preg_replace) Remove non-numeric characters
//--------------------------------------------------------------------------
// Remove non-numeric characters
//--------------------------------------------------------------------------
$str = preg_replace('/[^0-9]/s', '', $str);
@bferronato
Copy link
Copy Markdown

$str = preg_replace('/\D/', '', $str);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment