remove special characters from string javascript with emoji 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 special characters
var desired = stringToReplace.replace(/[^\w\s]/gi, '')