Skip to content

Instantly share code, notes, and snippets.

@alexcastillo
Created May 13, 2014 16:35
Show Gist options
  • Save alexcastillo/a32d66bf844eafdd0f14 to your computer and use it in GitHub Desktop.
Save alexcastillo/a32d66bf844eafdd0f14 to your computer and use it in GitHub Desktop.
Javascript - Email validate function (regex based)
// Returns true or false wether or not the email passed as a parameter passes the test
function validateEmail (email) {
var emailRegex = /^(([^<>()[\]\\.,;:\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,}))$/;
return emailRegex.test(email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment