Created
August 15, 2013 14:14
-
-
Save stugoo/6241127 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// extend prototype to check email address on string | |
String.prototype.checkEmail = function(){ | |
var e=/^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; | |
return e.test(this); | |
}; | |
// usage | |
// "[email protected]".checkEmail(); (returns true/false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment