Answers for "how to remove special characters from a string in javascript using"

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
2

how to check for special characters in javascript

var format = /[!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?]+/;

if(format.test(string)){
  return true;
} else {
  return false;
}
Posted by: Guest on October-04-2020

Code answers related to "how to remove special characters from a string in javascript using"

Code answers related to "Javascript"

Browse Popular Code Answers by Language