remove special characters from string javascript
var str = "Hello^# World/"; str.replace(/[^a-zA-Z ]/g, ""); // "Hello World"
remove a special character from string javascript
javascript remove non alphanumeric
remove duplicate characters in a string javascript