Skip to content

Instantly share code, notes, and snippets.

@rtmalone
Created June 3, 2019 15:16
Show Gist options
  • Select an option

  • Save rtmalone/31ba8756635ca1994b251aea0e59042d to your computer and use it in GitHub Desktop.

Select an option

Save rtmalone/31ba8756635ca1994b251aea0e59042d to your computer and use it in GitHub Desktop.
Regex for valid email
// https://www.w3.org/TR/html5/forms.html#valid-e-mail-address
const remail = /^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment