Answers for "how to check if there are special characters in a string in javascript"

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
3

javascript check if string contains special characters

var email = "[email protected]";
if(email.includes("@")){
  console.log("Email is valid");
}
else{
  console.log("Email is not valid");
}
// includes return boolean, if your string found => true else => false
Posted by: Guest on June-19-2021

Code answers related to "how to check if there are special characters in a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language