Skip to content

Instantly share code, notes, and snippets.

@Hromenique
Last active August 29, 2015 14:05
Show Gist options
  • Save Hromenique/321a71c08aacb5ad1316 to your computer and use it in GitHub Desktop.
Save Hromenique/321a71c08aacb5ad1316 to your computer and use it in GitHub Desktop.
Validação de email
var verificarEmail = function(email){
var regex = /^[a-zA-Z0-9][a-zA-Z0-9\._-]+@([a-zA-Z0-9\._-]+\.)[a-zA-Z-0-9]{2,}$/;
var result = regex.exec(email) ? true : false;
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment