i am using a Regular Expression that validates an email address here is the regular expression i am using.
preg_match("/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/", $email)
most of the above code are self explanatory like
a) ^ represents NOT.
b) the start of the string should be either _ a-z 0-9
c) match the next character which starts with dot
d) now what does *@ means here, couldn't it be just @ which means the next character should be @
e) next again it will try and find dot, the first dot is optional and the second is compulsory.
f) in the end what does $ means?
^does not represent "NOT" in this case. It only does so inside of a character class (and then only if it's the first character):[^abc]`. Here it means "start of the string". – Tim Pietzcker Jun 7 '11 at 5:56(\.[a-z]{2,})$/. Otherwise, you're ignoring the .areo, .coop, .info, .museum, .name, .local, or .localdomain TLDs, or any new gTLDs that come around. </nit-pick> – Thomas Minor Jun 7 '11 at 6:03