javascript remove all numbers and symbols from string code example
Example 1: remove special characters from string javascript
var str = "Hello^# World/";
str.replace(/[^a-zA-Z ]/g, ""); // "Hello World"
Example 2: js remove all non numeric from string
numString = myString.replace(/\D/g,'');