Answers for "strip all but numbers from string php"

PHP
2

php remove numbers from string

$words = preg_replace('/[0-9]+/', '', $words);
Posted by: Guest on September-25-2020
0

php remove all but numbers

// Original SOA
preg_replace('/[^0-9]/', '', '604-619-5135'); // Removes the dahses in 604-619-5135

preg_replace('/[^0-9]/', '', '7#sq7k*77dql'); // = 7777
Posted by: Guest on May-31-2021

Code answers related to "strip all but numbers from string php"

Browse Popular Code Answers by Language