how to remove all non numbers javascript# code example
Example 1: javascript remove all but numbers
string.replace(/[^0-9]/g, '');
Example 2: js remove all non numeric from string
numString = myString.replace(/\D/g,'');
string.replace(/[^0-9]/g, '');
numString = myString.replace(/\D/g,'');