Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can an email address be validated in Javascript?

Though this solution may be simple, I'm sure this is one of those useful things that people will be Googling for and deserves its own entry on the site

share|improve this question
10  
Though this solution may be simple, I'm sure this is one of those useful things that people will be Googling for and deserves its own entry on the site If only Google would be the first place to look :) Just look at the duplicates of this closed every some time. – voyager Sep 3 '09 at 14:32
75  
I'm sure this is one of those useful things that people will be Googling for lol, as a matter of fact that's how I just came across this question! – alpha123 Feb 11 '11 at 23:59
3  
3  
please get this right, too many website don't like my email address of "firstName@secondName.name", not all top level domains end it 2 or 3 letters. – Ian Ringrose Aug 19 '11 at 14:51
1  
I found this first result in Google. Thank the lord you asked this question or I might be stumbling upon some lame W3Schools tutorial right about now. – Henley Chiu Nov 1 '12 at 1:57
show 4 more comments

25 Answers

up vote 522 down vote accepted

Using Regular Expressions is probably the best way. Here's an example (live demo):

function validateEmail(email) { 
    var re = /^(([^<>()[\]\\.,;:\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 re.test(email);
} 

But keep in mind that one should not rely only upon JavaScript validation. JavaScript can easily be disabled. This should be validated on the server side as well.

share|improve this answer
112  
This regex eliminates valid, in-use emails. Do not use. Google for "RFC822" or "RFC2822" to get a proper regex. – Randal Schwartz Sep 8 '10 at 2:34
21  
@Randall: Can you give an example of an email address that this won't let through? – rossipedia Sep 14 '10 at 18:08
7  
-1 you will never match all valid email addresses with a regular expression – Brad Mace Jul 9 '11 at 4:32
45  
"...JavaScript can easily be disabled. This should be validated on the server side as well." It is possible that this IS for server-side validation a la Node.js =) – mkoistinen Jul 19 '11 at 21:20
19  
Someone post some legitimate email addresses that this won't validate, or some illegitimate ones that it will, and I'll consider stopping using it. Until then, good work. – Ben Roberts Jun 9 '12 at 13:51
show 25 more comments

There's something you have to understand the second you decide to use a regular expression to validate emails: It's probably not a good idea. Once you have come to terms with that, there are many implementations out there that can get you halfway there, this article sums them up nicely.

In short, however, the only way to be absolutely, positively sure that what the user entered is in fact an email is to actually send an email and see what happens. Other than that it's all just guesses.

share|improve this answer
3  
That link was a great read. Thanks! – Matt Ball Jun 30 '10 at 20:21
10  
-1 why would i want to spend my time validating an email address that doesn't even pass the regex control ? – kommradHomer Jul 19 '12 at 7:16
6  
@PaoloBergantino I just do not except that regex is a bad idea and just a guess. A regex-invalid address is %100 an invalid address. – kommradHomer Jul 19 '12 at 14:48
2  
@kommradHomer -- a "regex invalid" address is almost always valid, because whatever regex you use to validate an email address is almost certainly wrong and will exclude valid email addresses. An email address is name_part@domain_part and practically anything, including an @, is valid in the name_part; The address foo@bar@machine.subdomain.example.museum is legal, although it must be escaped as foo\@bar@machine..... Once the email reaches the domain e.g. 'example.com' that domain can route the mail "locally" so "strange" usernames and hostnames can exist. – Stephen P Mar 7 at 1:40
1  
The second regex in voyager's answer in stackoverflow.com/a/1373724/69697 is practical for use and should have almost no false negatives. I agree with @kommradHomer here -- why send an email if you don't have to? I can understand reflexive dislike for incomprehensible regexes and desire to keep code simple, but this is a couple lines of code that can save your server a lot of trouble by immediately weeding out items that are definitely invalid. A regex on its own is unhelpful, but serves as a good complement to serverside validation. – Ben Apr 10 at 21:30
show 3 more comments

Just for completeness, here you have another RFC 2822 compliant regex

The official standard is known as RFC 2822. It describes the syntax that valid email addresses must adhere to. You can (but you shouldn'tread on) implement it with this regular expression:

(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])

(...) We get a more practical implementation of RFC 2822 if we omit the syntax using double quotes and square brackets. It will still match 99.99% of all email addresses in actual use today.

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?

A further change you could make is to allow any two-letter country code top level domain, and only specific generic top level domains. This regex filters dummy email addresses like asdf@adsf.adsf. You will need to update it as new top-level domains are added.

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+(?:[A-Z]{2}|com|org|net|gov|mil|biz|info|mobi|name|aero|jobs|museum)\b

So even when following official standards, there are still trade-offs to be made. Don't blindly copy regular expressions from online libraries or discussion forums. Always test them on your own data and with your own applications.

* Emphasis mine

share|improve this answer
2  
NB: "In actual use today" may have been valid when the code was written, back in 200x. The code will likely remain in use beyond that specific year. (If I had a dime for every "meh, no one will ever use a 4+-letter TLD except those specific ones" I had to fix, I could corner the world's copper and nickel market ;)) – Piskvor Jun 13 '12 at 15:51
1  
+1 for the second regex , simplified version – kommradHomer Jul 19 '12 at 7:26
For the practical implementation of RFC 2822, the ending should be modified slightly to prevent single char domain extensions. /[a-z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-z0-9](?‌​:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9][a-z0-9-]*[a-z0-9]/ – will Farrell Jul 19 '12 at 18:52
Also, the first part should be (?:[A-z with a capital A to avoid false negatives when a user capitalizes their email address. – Don Rolling May 14 at 14:22

I've slightly modified Jaymon's answer for people who want really simple validation in the form of:

anystring@anystring.anystring

The regex:

/\S+@\S+\.\S+/

Example javascript function:

function validateEmail(email) 
{
    var re = /\S+@\S+\.\S+/;
    return re.test(email);
}

(The reason I'm not using the accepted answer is that Chrome was giving syntax errors when I tried to use it).

share|improve this answer
3  
/\S+@\S+\.\S+/.test('name@again@example.com') true – neoascetic Jul 16 '12 at 9:55
7  
@neoascetic Shazam! /[^\s@]+@[^\s@]+\.[^\s@]+/.test('name@again@example.com') // false – ImmortalFirefly Jul 16 '12 at 21:10
2  
You can implement something 20x as long that might cause problems for a few users and might not be valid in the future, or you can grab ImmortalFirefly's version to make sure they at least put in the effort to make it look real. Depending on your application it may be more likely to come across someone will get mad because you don't accept their unconventional email, rather than someone who causes problems by entering email addresses that don't really exist (which they can do anyways by entering a 100% valid RFC2822 email address but using an unregistered username or domain). Upvoted! – user83358 Jul 30 '12 at 18:20
9  
@ImmortalFirefly, the regex you provided will actually match name@again@example.com. Try pasting your line into a JavaScript console. I believe your intention was to match only the entire text, which would require the beginning of text '^' and end of text '$' operators. The one I'm using is /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test('name@again@example.com') – OregonTrail Aug 9 '12 at 14:58
@OregonTrail I must have not copied it right. You are correct. – ImmortalFirefly Aug 9 '12 at 18:06
show 1 more comment

Wow, lots of complexity here, if all you want to do is just catch the most obvious syntax errors, I would do something like this:

\S+@\S+

It usually catches the most obvious errors that the user makes and assures that the form is mostly right, which is what javascript validation is all about.

share|improve this answer
4  
+1, for JS validation this is more than enough – ajax333221 May 9 '12 at 16:10
3  
+1 as sending email and seeing what happens is the only real sure way to validate an email address , theres no need to do more than a simple regex match. – kommradHomer Jul 19 '12 at 7:14
Squirtle's modified version below seems like the most effective solution on the page. You can validate all you want but I can still enter an email address "@gmaaaail.com". – user83358 Jul 30 '12 at 18:22
You can still keep it simple but do a little more to ensure it has a "." somewhere after the @ followed by only numbers or digits, so things like me@here, me@here@, and me@herecom aren't valid... ^\S+@\S+[\.][0-9a-z]+$ – Timmy Franks Mar 21 at 4:06
I think e-mail addresses can contain spaces. It's probably better to use .+@.+ – Sam Apr 10 at 23:51

javascript can match regex:

emailAddress.match( / some_regex /);

Here's an RFC22 regular expression for emails:

^((?>[a-zA-Z\d!#$%&'*+\-/=?^_`{|}~]+\x20*|"((?=[\x01-\x7f])[^"\\]|\\[\x01-\x7f])*
"\x20*)*(?<angle><))?((?!\.)(?>\.?[a-zA-Z\d!#$%&'*+\-/=?^_`{|}~]+)+|"((?=[\x01-\x
7f])[^"\\]|\\[\x01-\x7f])*")@(((?!-)[a-zA-Z\d\-]+(?<!-)\.)+[a-zA-Z]{2,}|\[(((?(?<
!\[)\.)(25[0-5]|2[0-4]\d|[01]?\d?\d)){4}|[a-zA-Z\d\-]*[a-zA-Z\d]:((?=[\x01-\x7f])
[^\\\[\]]|\\[\x01-\x7f])+)\])(?(angle)>)$
share|improve this answer
Node can't seem to compile this regex – Kato Oct 6 '12 at 0:08

Correct validation of email address in compliance with the RFCs is not something that can be achieved with a one-liner regex. Here's a link to an article with the best solution I've found in PHP: http://www.dominicsayers.com/isemail/. Obviously, it has been ported to Java. I think the function is too complex to be ported and used in JavaScript.

A good practice is to validate your data on the client but double-check the validation on the server. With this in mind, you can simply check whether a string looks like a valid email address on the client and perform the strict check on the server.

Here's the JS function I use to check if a string looks like a valid mail address:

function looksLikeMail(str) {
    var lastAtPos = str.lastIndexOf('@');
    var lastDotPos = str.lastIndexOf('.');
    return (lastAtPos < lastDotPos && lastAtPos > 0 && str.indexOf('@@') == -1 && lastDotPos > 2 && (str.length - lastDotPos) > 2);
}

Explanation:

  • lastAtPos < lastDotPos: Last @ should be before last . since @ cannot be part of server name (as far as I know).

  • lastAtPos > 0: There should be something (the email username) before the last @.

  • str.indexOf('@@') == -1: There should be no @@ in the address. Even if @ appears as the last character in email username, it has to be quoted so " would be between that @ and the last @ in the address.

  • lastDotPos > 2: There should be at least 3 characters before the last dot, for example a@b.com.

  • (str.length - lastDotPos) > 2: There should be enough characters after the last dot to form a two-character domain. I'm not sure if the brackets are necessary.

share|improve this answer
This fn looks nice, but is it better than the regex written in the top answer? – Atul Goyal Jul 15 '11 at 9:24
2  
I doubt it. I use it only to check whether a string looks like an email and leave the details to server-side code. – Miloš Rašić Jul 18 '11 at 16:18
ahh...sounds good... nice idea! :) – Atul Goyal Jul 18 '11 at 17:42
It validates OK any string like 'aaaa', i.e. without '@' and '.' – Gennady Shumakher Feb 5 '12 at 10:14
Itt shouldn‘t. i – Miloš Rašić May 16 '12 at 16:18
show 1 more comment

Don't validate, just send a confirmation email instead.

share|improve this answer
2  
Why -1? +1 I think this is a good idea. – Jules Sep 16 '11 at 4:14
10  
Even if the users enters something completely invalid? Say: email@web,com ?? Basic validation prior to submitting should be done on the front end and then double it up on the back end by sending the confirmation email. – JustinJason Jun 5 '12 at 12:59
5  
Validation of an email shall help the user to prevent typos. So there should be a slight validation, otherwise the user might wait for an email, without knowing he just entered a wrong address. – SamiSalami Jul 16 '12 at 13:48

HTML5 itself has email validation. if your browser support HTML5 then then you can use following code.

   <form><input type="email" placeholder="me@example.com">
     <input type="submit">
   </form>

jsFiddle link

share|improve this answer
2  
this is good, but the problem with this is that it must be inside a form tag and submitted by a submit input, which not everyone has the luxury of doing. Also, you can't really style the error message. – Jason Nov 12 '11 at 0:08
It doesn't validate emails with IDN – NARKOZ Sep 17 '12 at 6:41
I've added an answer below that frees you from the form and submit. But yes, the browsers usually also only apply some plausibility check and not a full RFC 822 validation. – Boldewyn Dec 20 '12 at 15:25
also some pepole (like me) are no longer using input tags at all and instead rely on contenteditable on standard div tags. – tim Apr 3 at 23:01

This was stolen from http://codesnippets.joyent.com/posts/show/1917

email = $('email');
filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
if (filter.test(email.value)) {
  // Yay! valid
  return true;
}
else
  {return false;}
share|improve this answer
This filters out ever-popular .museum and .travel domains (due to 4 char limit after .) – bobobobo Sep 16 '11 at 12:50
1  
Changing {2,4} to {2,6} won't be a problem – Anton N Jan 19 '12 at 12:37
1  
@Anton N: It has approximately a gazillion of other problems as well; the final {2,4} is merely a useful indicator thereof (as in "when you see that error, others are likely to be around"). The most basic one is lack of + in the local part; this comment box is too small to point out all of the errors commited above. – Piskvor Jun 13 '12 at 15:43
3  
Why can't you just do return filter.test(email.value); ? – MT. Jun 15 '12 at 18:03

There is a good example at http://techtamasha.com/?p=47

share|improve this answer

In modern browsers you can build on top of @Sushil's answer with pure JavaScript and the DOM:

function validateEmail(value) {
  var input = document.createElement('input');

  input.type = 'email';
  input.value = value;

  return input.checkValidity();
}

I've put together an example in this fiddle: http://jsfiddle.net/boldewyn/2b6d5/. If you combine this with a Modernizr feature detection, it frees you from the RegEx massacre.

share|improve this answer
Hehe pretty good ^_^ +1 – Neal Dec 20 '12 at 15:22
This is a clever idea to punt on the problem but it doesn't work because browsers have crappy validation as well. E.g. .@a validates as true in current versions of Chrome, Firefox, and Safari. – Henry Jackson May 2 at 18:44
@HenryJackson Unfortunately, in this case yes. This is because according to the RFC that is a valid e-mail address (think intranets). Browsers would get grilled, if they validate too narrow and produce false negatives. – Boldewyn May 3 at 7:02

Here is a very good discussion about using regular expressions to validate email addresses; "Comparing E-mail Address Validating Regular Expressions"

Here is the current top expression, that is JavaScript compatible, for reference purposes:

/^[-a-z0-9~!$%^&*_=+}{\'?]+(\.[-a-z0-9~!$%^&*_=+}{\'?]+)*@([a-z0-9_][-a-z0-9_]*(\.[-a-z0-9_]+)*\.(aero|arpa|biz|com|coop|edu|gov|info|int|mil|museum|name|net|org|pro|travel|mobi|[a-z][a-z])|([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}))(:[0-9]{1,5})?$/i
share|improve this answer
4  
-1 Whitelisting leaves much to be desired - notably, you missed .jobs. In addition, there are live IDNs (most of which, I admit, were only oficially approved after your post - e.g. .中國 in June 2010; but most have been in the works for years). – Piskvor Jun 6 '11 at 1:50
-1 do not use constant top level domains. There always (and there will be for example 2013) could be added new tld. – miho May 7 '12 at 13:56

Use Google's own solution from their Closure library. Very easy to integrate. http://www.sbrian.com/2011/01/javascript-email-address-validation.html

share|improve this answer

Apparently, that's it:

/^([\w\!\#$\%\&\'\*\+\-\/\=\?\^\`{\|\}\~]+\.)*[\w\!\#$\%\&\'\*\+\-\/\=\?\^\`{\|\}\~]+@((((([a-z0-9]{1}[a-z0-9\-]{0,62}[a-z0-9]{1})|[a-z])\.)+[a-z]{2,6})|(\d{1,3}\.){3}\d{1,3}(\:\d{1,5})?)$/i

Taken from http://fightingforalostcause.net/misc/2006/compare-email-regex.php on Oct 1 '10.

But, of course, that's ignoring internationalization.

share|improve this answer
They forgot to escape the @. – Alan Moore Oct 1 '10 at 17:38
You don't need to. – Félix Saparelli Oct 3 '10 at 13:05

It's hard to get an email validator 100% correct. The only really way to get it correct would be to send a test email to the account. That said, there are a few basic checks that can help make sure that you're getting something reasonable.

Some things to improve:

Instead of new RegExp, just try writing the regexp out like this:

if (reg.test(/@/))

Second, check to make sure that a period comes after the @ sign, and make sure that there are characters between the @s and periods.

share|improve this answer

Do this (case insensitive)

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?

Why? It's based on RFC 2822, which is a standard ALL email addresses MUST adhere to.

Here's an example of it being use in JavaScript

var emailCheck=/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i;
console.log( emailCheck.test('some.body@domain.co.uk') );

Note: Technically some emails can include quotes in the section before the @ symbol with escape characters inside the quotes (so you're email user can be obnoxious and contain stuff like @ and "... as long as it's written in quotes) NOBODY DOES THIS EVER. It's obsolete. But, it IS included in the true RFC 2822 standard, and omitted here.

More info: http://www.regular-expressions.info/email.html

share|improve this answer

You should not use reg-exp to validate an input string to check if it's an email. It's too complicated and would not cover all the cases.

Now since you can only cover 90% of the cases why not writing something like:

function isPossiblyValidEmail(txt) {
   return txt.length > 0 && txt.indexOf('@')>0;
}

You can refine it. For instance 'aaa@' it's valid. but overall you get the gist. and don't get carried away... a simple 90% solution is better than 100% solution that does not work.

Please add +1, the world needs simpler code...

share|improve this answer
2  
This allows the entry of so many invalid email addresses it is useless advice. – cazlab Jan 6 '12 at 23:07
It doesn't have to be impossible to debug at all. There are many fine examples in this thread that validate further than "does it have an '@' in it. Your example allows "u@" to be considered a valid email address. At least evaluate for whether there is a domain or something that might be a domain. Yours is an example of what I'd call "aggressively lazy coding." I'm not sure why you are defending it as it is by far the lowest rated answer in the thread. – cazlab Jan 26 '12 at 9:08
2  
@cazlab maybe you are right. After all I have been voted down. Differently from you I don't think though any of the code above shows easy to debug snippets. My 'agressively lazy' approach at least can be improved if required. – Zo72 Jan 26 '12 at 11:37
1  
How is this any different from using regex? (.+)@(.*) does the same thing, and shorter. – snostorm Apr 7 '12 at 21:03
1  
+1 - If the objective is to make sure that the user has at least attempted to put in an e-mail address, then checking to see if it can be determined that the e-mail address is definitely NOT an e-mail is a great solution. A good example would be if you want a person's username to be an e-mail address. If the user types in 'sexy_chick_23', then this regex can be used to give them a heads up that an e-mail is expected. If something is typed in that looks like an e-mail, but is not, then the user will never get the 'confirmation' e-mail and the sign up process will never be validated. – Chris Dutrow Sep 2 '12 at 16:41
show 1 more comment

Sectrean's solution works great but it was failing my linter. So i added some escapes.

function validateEmail(email){ 
     var re = /^(([^<>()[]\\.,;:\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 re.test(email); 
}
share|improve this answer

In contrast to squirtle here is a complex solution but does a mighty fine job of validating emails properly:

function isEmail(email) { 
    return /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))$/i.test(email);
} 

Use like so:

if (isEmail('youremail@yourdomain.com') == true){ console.log('This is email is valid'); }
share|improve this answer
1  
You don't need the == true on your example. – Luke Alderton Mar 11 at 11:05

This is the correct RFC822 version.

function checkEmail(emailAddress) {
  var sQtext = '[^\\x0d\\x22\\x5c\\x80-\\xff]';
  var sDtext = '[^\\x0d\\x5b-\\x5d\\x80-\\xff]';
  var sAtom = '[^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+';
  var sQuotedPair = '\\x5c[\\x00-\\x7f]';
  var sDomainLiteral = '\\x5b(' + sDtext + '|' + sQuotedPair + ')*\\x5d';
  var sQuotedString = '\\x22(' + sQtext + '|' + sQuotedPair + ')*\\x22';
  var sDomain_ref = sAtom;
  var sSubDomain = '(' + sDomain_ref + '|' + sDomainLiteral + ')';
  var sWord = '(' + sAtom + '|' + sQuotedString + ')';
  var sDomain = sSubDomain + '(\\x2e' + sSubDomain + ')*';
  var sLocalPart = sWord + '(\\x2e' + sWord + ')*';
  var sAddrSpec = sLocalPart + '\\x40' + sDomain; // complete RFC822 email address spec
  var sValidEmail = '^' + sAddrSpec + '$'; // as whole string

  var reValidEmail = new RegExp(sValidEmail);

  if (reValidEmail.test(emailAddress)) {
    return true;
  }

  return false;
}
share|improve this answer
Yuck. That may work, but it's kind of ugly, don't you think? – BGM May 12 at 3:05
The 'form' of the function is more to show what it does :-) – bvl May 12 at 10:44

My knowledge of regex is not that good. That's why I check the general syntax with a simple regex first, and check more specific options with other functions afterwards. This may not be not the best technical solution, but this way I'm way more flexible and faster.

The most common errors I've come across are spaces (especially at the beginnging and end) and occasionally a double dot.

function check_email(val){
    if(!val.match(/\S+@\S+\.\S+/)){ // Jaymon's / Squirtle's solution
      // do something
      return false;
    }
    if( val.indexOf(' ')!=-1 || val.indexOf('..')!=-1){
      // do something
      return false;
    }
    return true;
}

check_email('check@thiscom'); // returns false
check_email('check@this..com'); // returns false
check_email(' check@this.com'); // returns false
check_email('check@this.com'); // returns true
share|improve this answer

Following regular expression:

/^([\w]+)(.[\w]+)*@([\w]+)(.[\w]{2,3}){1,2}$/;
share|improve this answer
function validateEmail(elementValue){        
    var emailPattern = /^[a-zA-Z0-9._]+[a-zA-Z0-9]+@[a-zA-Z0-9]+\.[a-zA-Z]{2,4}$/;  
    return emailPattern.test(elementValue);   
  }   

it return true if email address is valid otherwise it will return false

share|improve this answer
<form name="validation" onSubmit="return checkbae()">
Please input a valid email address:<br />


<input type="text" size=18 name="emailcheck">
<input type="submit" value="Submit">
</form>



<script language="JavaScript1.2">


var testresults
function checkemail(){
var str=document.validation.emailcheck.value
var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
if (filter.test(str))
testresults=true
else{
alert("Please input a valid email address!")
testresults=false
}
return (testresults)
}
</script>

<script>
function checkbae(){
if (document.layers||document.getElementById||document.all)
return checkemail()
else
return true
}
</script>
share|improve this answer
Hmmm... someone gave you a -1 and didn't say why... – BGM May 12 at 3:02
Maybe you can help me, why ? – tgrll May 13 at 6:03
Maybe if you added an explanation or description to go with it? I don't think you really need to show any html; all people are concerned with is the javascript and the regex. If you reduce your answer to just the jacascript, and add a little blurb to go with it, I'll give you an upvote. – BGM May 13 at 13:51

protected by Alan Moore Mar 2 '11 at 11:31

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.