Answers for "Create a regex for email verification."

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
1

email validation regex

// Simple and very useful regex. Just Pass your email whare is email here
const regex = /\S+@\S+\.\S+/
regex.test(email here)
Posted by: Guest on July-26-2021
2

email regex

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

Code answers related to "Create a regex for email verification."

Code answers related to "Javascript"

Browse Popular Code Answers by Language