Skip to content

Instantly share code, notes, and snippets.

@pulketo
Forked from lerua83/extractNumbersString.php
Created January 31, 2019 17:12
Show Gist options
  • Save pulketo/dbea1d7d03bb5afa3ea275456b09035f to your computer and use it in GitHub Desktop.
Save pulketo/dbea1d7d03bb5afa3ea275456b09035f to your computer and use it in GitHub Desktop.
PHP - Extract numbers from a string: URL: http://stackoverflow.com/questions/6278296/extract-numbers-from-a-string I want to extract the numbers from a string that contains numbers and letters like
$str = 'In My Cart : 11 12 items';
preg_match_all('!\d+!', $str, $matches);
print_r($matches);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment