Answers for "how to remove all non numbers javascript#"

3

javascript remove all but numbers

string.replace(/[^0-9]/g, '');
Posted by: Guest on December-10-2020
2

js remove all non numeric from string

numString = myString.replace(/\D/g,'');
Posted by: Guest on October-24-2020

Code answers related to "how to remove all non numbers javascript#"

Code answers related to "Javascript"

Browse Popular Code Answers by Language