Skip to content

Instantly share code, notes, and snippets.

@milnomada
Last active November 15, 2019 21:41
Show Gist options
  • Save milnomada/45b98e88d7713150587608995fce052c to your computer and use it in GitHub Desktop.
Save milnomada/45b98e88d7713150587608995fce052c to your computer and use it in GitHub Desktop.
Javascript Validate Email
const validateEmail = (str) => {
var emailRe = /^(([^<>()\[\]\\.,;:\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,}))$/;
var arr = emailRe.exec(str)
if(arr && arr.length) {
return arr[0]
}
else return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment