Answers for "validition mdn email regex"

22

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

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
0

avascript regex email

function Validate (InputEmail){
  if (InputEmail.match(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/)) {
    return true; 
  } else {
    return false; 
  }
}

console.log(Validate("[email protected]"));
Posted by: Guest on July-18-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language