Click here to Skip to main content
15,867,963 members
Articles / Programming Languages / C#
Article

Email ID Validation

Rate me:
Please Sign up or sign in to vote.
4.51/5 (28 votes)
8 May 2006CPOL2 min read 205.9K   2.4K   46   25
Email ID validation using regular expressions (Finite Automata example).

Image 1

Introduction

Regular Expressions are very much useful for validation checking. It's not a new technology; it originated in the UNIX environment, and is commonly used with the Perl language. Regular expressions are, however, supported by a number of .NET classes in the namespace System.Text.RegularExpressions.

Its rules are same as the finite automata. Information regarding the main special characters or escape sequences that you can use are available in the MSDN.

Regular Expressions for Email Checking

Basic things to be understood in RegEx are:

  • “*” matches 0 or more patterns.
  • “?” matches single character.
  • “^” for ignoring matches.
  • “[]” for searching range patterns.

The rules for validating email IDs, and some valid and invalid examples are mentioned here:

  1. Email addresses must be start with a letter symbol. And any number of letters or digits or underscore (_) can be appended, and only a single dot (.) is allowed but other symbols and white spaces are not allowed.
  2. The name field of the address must end with either a letter or digit.
  3. If underscore or dote is used then before it, letters or digits must be used for a valid name.
  4. Dot can be used only once but underscore can be used multiple times.

Some examples:

miltoncse00@yahoo.com            valid
2milton00@yahoo.com              invalid
milton cse00@yahoo.com           invalid(white space)
milton_cse@yahoo.com             valid
milton_cse_00@yahoo.com          valid
milton_cse_00_@yahoo.com         invalid(_ before @)
milton.case_00_00@yahoo.com      valid

milton.cas.e_00_00@yahoo.com     invalid(double dote)
milton.cas.e_00_00@yahoo.co.in   valid
milton.cas.e_00_00.@yahoo.co.in  valid(dote before @)
miltoncse00@yahoo.com      
miltoncse00                      name portion

According to these rules and valid examples, we can draw a state diagram for valid name checking of email addresses:

Image 2

Fig: state diagram for the naming portion

From the state diagram, the regular expression for the naming part is:

[a-z][a-z|0-9|]*([_][a-z|0-9]+)*([.][a-z|0-9]+([_][a-z|0-9]+)*)?

The rules for the email name portion (before @) can start with a letter. And any number of letters or digits can be appended and other symbols are not allowed.

So the regular expression for that part is:

[a-z][a-z|0-9|]*

After the dot (.) portion like (.com/.net), it can start with a letter and any number of letters or digits can be appended. If another dot portion is allowed then that can follow the same rule.

So the regular expression for that part is:

([a-z][a-z|0-9]*(\.[a-z][a-z|0-9]*)?)

Combining all these regular expression, the regular expression for email checking that satisfies the Yahoo! email rules will be:

^[a-z][a-z|0-9|]*([_][a-z|0-9]+)*([.][a-z|0-9]+([_][a-z|0-9]+)*)?
@[a-z][a-z|0-9|]*
\.([a-z][a-z|0-9]*(\.[a-z][a-z|0-9]*)?)$

The C# code that can find that matching is very simple, as illustrated bellow:

C#
string pattern=@"^[a-z][a-z|0-9|]*([_][a-z|0-9]+)*([.][a-z|" + 
               @"0-9]+([_][a-z|0-9]+)*)?@[a-z][a-z|0-9|]*\.([a-z]" + 
               @"[a-z|0-9]*(\.[a-z][a-z|0-9]*)?)$";
System.Text.RegularExpressions.Match match = 
    Regex.Match(txtEmail.Text.Trim(), pattern, RegexOptions.IgnoreCase);

if(match.Success)
    MessageBox.Show("Success");
else
    MessageBox.Show("Fail");

So, we conclude that any validation problems that involve recursion, option, limitation is easier to solve with regular expressions than using other ways (like if-elseif-else, while condition). This can be represented in a state diagram that is very much easier and efficient to express and use.

My next article will be on auto ID generation for any table using stored procedures.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Bangladesh Bangladesh
Name SYED MD. ABUL BASHAR
Email ID: miltoncse00@gmail.com

I am now working as software engineer in Malaysia. I am from Bangladesh and I have completed my B.Sc (Engg.) in CSE from Rajshahi University of Engineering and Technology (RUET).I spend much time in learning latest technology.

My LinkedIn Profile : http://bd.linkedin.com/in/miltoncse00[^]

My blog :http://ciintelligence.blogspot.com/[^]

Comments and Discussions

 
GeneralMy vote of 5 Pin
Member 924149811-Jul-12 8:06
Member 924149811-Jul-12 8:06 
GeneralMy vote of 5 Pin
Jariwala Amin20-Feb-12 18:27
professionalJariwala Amin20-Feb-12 18:27 
GeneralMy vote of 5 Pin
Member 436607127-Jan-12 20:34
Member 436607127-Jan-12 20:34 
GeneralMy vote of 5 Pin
emreinchains4-May-11 5:06
emreinchains4-May-11 5:06 
Generalgood article Pin
k4s17-Jan-11 5:57
k4s17-Jan-11 5:57 
GeneralMy vote of 4 Pin
Haitham Alany16-Sep-10 0:51
Haitham Alany16-Sep-10 0:51 
GeneralPoor article. Example of validation in real world. Pin
Minhajul Shaoun28-Dec-08 20:59
Minhajul Shaoun28-Dec-08 20:59 
GeneralRe: Poor article. Example of validation in real world. Pin
jzonthemtn6-Jan-09 3:12
jzonthemtn6-Jan-09 3:12 
GeneralRe: Poor article. Example of validation in real world. Pin
Syed BASHAR8-Jan-09 22:57
Syed BASHAR8-Jan-09 22:57 
GeneralRe: Poor article. Example of validation in real world. Pin
Minhajul Shaoun23-Jun-09 5:25
Minhajul Shaoun23-Jun-09 5:25 
GeneralNot working.... Pin
jasysam24-Sep-08 22:33
jasysam24-Sep-08 22:33 
GeneralRe: Not working.... Pin
Syed BASHAR8-Jan-09 22:59
Syed BASHAR8-Jan-09 22:59 
QuestionHow do I validate internet (i.e Attach File path) Pin
Dhaval Pairkh23-Jul-07 10:00
Dhaval Pairkh23-Jul-07 10:00 
Generalvalidation of email account Pin
QuickDeveloper27-Apr-06 20:47
QuickDeveloper27-Apr-06 20:47 
GeneralRe: validation of email account Pin
Vasudevan Deepak Kumar28-Apr-06 2:05
Vasudevan Deepak Kumar28-Apr-06 2:05 
GeneralRe: validation of email account Pin
Syed BASHAR14-May-07 19:00
Syed BASHAR14-May-07 19:00 
GeneralRe: validation of email account Pin
Minhajul Shaoun16-Dec-08 18:04
Minhajul Shaoun16-Dec-08 18:04 
GeneralRe: validation of email account Pin
adima_7619-Jun-07 3:45
adima_7619-Jun-07 3:45 
GeneralToo Simple Pin
IntFoo27-Apr-06 12:52
IntFoo27-Apr-06 12:52 
GeneralRe: Too Simple Pin
Jake Wharton27-Apr-06 15:28
Jake Wharton27-Apr-06 15:28 
GeneralRe: Too Simple Pin
chmod75527-Apr-06 16:25
chmod75527-Apr-06 16:25 
GeneralRe: Too Simple Pin
jrandomuser8-May-06 5:08
jrandomuser8-May-06 5:08 
GeneralRe: Too Simple Pin
Mark Cranness15-May-06 19:50
Mark Cranness15-May-06 19:50 
GeneralRe: Too Simple Pin
Cd-MaN15-May-06 21:01
Cd-MaN15-May-06 21:01 
GeneralRe: Too Simple Pin
winart17-May-06 20:54
winart17-May-06 20:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.