Answers for "remove special characters in string jquery"

4

remove special characters from string javascript

var str = "Hello^# World/";
str.replace(/[^a-zA-Z ]/g, ""); // "Hello World"
Posted by: Guest on June-06-2020

Code answers related to "remove special characters in string jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language