The text of this article is not in this database — only its details are. Read it on the old site: Email Address Validation
1 Comment
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: Email Address Validation
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
Segey RytikoveditedPosted Dec 9, 2010, 9:21 AMEdited Dec 9, 2010, 9:22 AM
Glad to find code validation instead of regex. My tests revealed such bug: day@gmailcom is not returning false. This fixed the problem: if (!domain.Contains(".")) return false;