Answers for "angularjs remove special characters from string"

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 "angularjs remove special characters from string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language