Answers for "how we take out the string from special characters in js"

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 "how we take out the string from special characters in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language