I'm making some site which must be fully unicode. Database etc are working, i only have some small logic error. Im testing my register form with ajax if fields are valid, in email field i check with regular expressions.

However if a user has a email address like 日本人@日人日本人.com it isn't coming trough.

  1. This type of mail addresses exist?

Are email addresses always like this? (a-z A-Z 0-9) @ (a-z A-Z 0-9).(a-z A-Z 0-9)

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

As per RFC 5322 ("Internet Message Format"), section 3.4.1 ("Addr-Spec Specification") you can't use non US-ASCII characters such as those you've listed. However, characters such as...

! # $ % & ' * + - / = ? ^ _  { | } ~

...are legal, as well as the full stop/period character as long as there's only one in a row.

For more information see the above RFC and indeed the Wikipedia article on email addresses, specifically the "syntax" section.

UPDATE

There's also a newer (albeit experimental) RFC 5336 which handles the now legitimate international domains containing UTF-8 characters, etc.

link|improve this answer
feedback

You must be very careful when you try to match/validate email addresses on a regex. In some cases you reject email addresses which however are valid. Basically its:

Show me one regex and I show you one email which doesn't match.

For that reason if I check email addresses I use a very simple regex like .+@.+(\..+)* (user part anything, host part got at least one dot). Anything else results in false positives and false negatives.

Its better not to match email addresses (only check trivial stuff like "@") but instead send opt-in emails instead.

link|improve this answer
+1 Have to agree, the "loose" validation and opt-in approach is a more elegant solution. – middaparka Apr 17 '11 at 20:09
feedback

Usually address are in the form

[_a-zA-Z0-9]+(\.[_a-zA-Z0-9]+)*@[_a-zA-Z0-9]+(\.[_a-zA-Z0-9]+)+

on in other words \w+(\.\w+)*@\w+(\.\w+)+. Also this site have useful information about email address patterns:

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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