remove special character from string javascript code example
Example 1: remove special characters from string javascript
var str = "Hello^# World/";
str.replace(/[^a-zA-Z ]/g, "");
Example 2: remove a special character from string javascript
string = string.replace(/[&\/\\#,+()$~%.'":*?<>{}]/g, '');
string = string.replace(/[^a-zA-Z0-9]/g, '');
Example 3: js remove special characters
var desired = stringToReplace.replace(/[^\w\s]/gi, '')
Example 4: remove all sign that is not a-b in string js
const str = "abc's test#s";
console.log(str.replace(/[^a-zA-Z ]/g, " "));