Answers for "how to test if there are special characters in a string js"

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 test if there are special characters in a string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language