Skip to content

Instantly share code, notes, and snippets.

@fiftin
Created June 2, 2020 16:50
Show Gist options
  • Save fiftin/29edc4ecb1e7337cb2eb18a330ad8623 to your computer and use it in GitHub Desktop.
Save fiftin/29edc4ecb1e7337cb2eb18a330ad8623 to your computer and use it in GitHub Desktop.
Email regexp (JavaScript)
function isEmail(s) {
return /^(([^<>()[\]\\.,;:\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,}))$/.test(s);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment