Answers for "regex check email address"

7

email validation regex

const emailRegex = RegExp(
    /^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:.[a-zA-Z0-9-]+)*$/
  );
Posted by: Guest on April-05-2020
3

regex to verify email

let regex=/^([a-zA-Z0-9_-.]+)@([a-zA-Z0-9_-.]+).([a-zA-z]+)$/;
Posted by: Guest on May-12-2021
2

regex for email

^[w-.]+@([w-]+.)+[w-]{2,4}$
//will validate for:  [email protected] etc
Posted by: Guest on April-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language