Skip to content

Instantly share code, notes, and snippets.

@wallace7souza
Created May 27, 2015 16:16
Show Gist options
  • Save wallace7souza/6943b41e772567646883 to your computer and use it in GitHub Desktop.
Save wallace7souza/6943b41e772567646883 to your computer and use it in GitHub Desktop.
Javascript regex e-mail validate
function is_email(email){
var er = /^[a-zA-Z0-9][a-zA-Z0-9\._-]+@([a-zA-Z0-9\._-]+\.)[a-zA-Z-0-9]{2}/;
if( !er.exec(email) )
{
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment