Created
November 29, 2010 10:32
-
-
Save badsyntax/719800 to your computer and use it in GitHub Desktop.
Revisions
-
badsyntax revised this gist
Nov 29, 2010 . 1 changed file with 3 additions and 18 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,21 +1,6 @@ // See http://rosskendall.com/blog/web/javascript-function-to-check-an-email-address-conforms-to-rfc822 function isEmail(email){ return /^([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c[\x00-\x7f])*\x22)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c[\x00-\x7f])*\x22))*\x40([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c[\x00-\x7f])*\x5d)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c[\x00-\x7f])*\x5d))*$/.test( email ); } -
badsyntax created this gist
Nov 29, 2010 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ // See http://rosskendall.com/blog/web/javascript-function-to-check-an-email-address-conforms-to-rfc822 String.prototype.isEmail = function(){ var sQtext = '[^\\x0d\\x22\\x5c\\x80-\\xff]', sDtext = '[^\\x0d\\x5b-\\x5d\\x80-\\xff]', sAtom = '[^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+', sQuotedPair = '\\x5c[\\x00-\\x7f]', sDomainLiteral = '\\x5b(' + sDtext + '|' + sQuotedPair + ')*\\x5d', sQuotedString = '\\x22(' + sQtext + '|' + sQuotedPair + ')*\\x22', sDomain_ref = sAtom, sSubDomain = '(' + sDomain_ref + '|' + sDomainLiteral + ')', sWord = '(' + sAtom + '|' + sQuotedString + ')', sDomain = sSubDomain + '(\\x2e' + sSubDomain + ')*', sLocalPart = sWord + '(\\x2e' + sWord + ')*', sAddrSpec = sLocalPart + '\\x40' + sDomain, // complete RFC822 email address spec sValidEmail = '^' + sAddrSpec + '$'; // as whole string return new RegExp(sValidEmail).test( this ); };