showing results for - "remove all chars from string and leave only numbers javascript"
Bautista
03 Jul 2018
1myString = myString.replace(/\D/g,'');
2