Answers for "regex pattern for email validation"

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
2

regex pattern to validate email

[a-zA-Z0-9._-]{3,}@[a-zA-Z0-9.-]{3,}\.[a-zA-Z]{2,4}
Posted by: Guest on August-08-2020
2

regex for email

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

email validation regex

^([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5})$
Posted by: Guest on March-03-2020
0

email regular expression

function validateEmail(email) {
 const re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
 return re.test(String(email).toLowerCase());
}
Posted by: Guest on July-12-2020
2

email regex

[\w._%+-]+@[\w.-]+\.[a-zA-Z]{2,3}
Posted by: Guest on June-10-2020

Code answers related to "regex pattern for email validation"

Code answers related to "Javascript"

Browse Popular Code Answers by Language