Answers for "regex for empty and email validation"

8

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
1

email validatore regex

//For simple validation including a dot
const emailRegex = RegExp(/^S+@S+.S+$/);
Posted by: Guest on October-07-2021

Code answers related to "regex for empty and email validation"

Code answers related to "Javascript"

Browse Popular Code Answers by Language