Answers for "how to get special characters in string using javascript"

9

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 get special characters in string using javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language