<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Regular Expression for Email Address validation in C#</title>
	<atom:link href="http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html</link>
	<description>Latest tip and information on Java and Oracle ADF</description>
	<lastBuildDate>Thu, 09 Feb 2012 07:11:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Blanche Mccleaf</title>
		<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/comment-page-1#comment-1955</link>
		<dc:creator>Blanche Mccleaf</dc:creator>
		<pubDate>Wed, 14 Dec 2011 01:16:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=646#comment-1955</guid>
		<description>Howdy.  Basically want to comment and express that I admired this post.  I&#039;ll be bookmarking your web-site and checking to see if you post any new ones. Thanks so much!</description>
		<content:encoded><![CDATA[<p>Howdy.  Basically want to comment and express that I admired this post.  I&#8217;ll be bookmarking your web-site and checking to see if you post any new ones. Thanks so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/comment-page-1#comment-1475</link>
		<dc:creator>Jared</dc:creator>
		<pubDate>Mon, 01 Aug 2011 01:41:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=646#comment-1475</guid>
		<description>I wrote a regular expression for validating an email address that is quite short and quite accurate, but I am trying to get more feed back.

Regular Expressions in C# (including a new comprehensive email pattern)
http://www.rhyous.com/2010/06/15/regular-expressions-in-cincluding-a-new-comprehensive-email-pattern/

I tried yours and it missed about 1/4th the emails in my list and so I thought maybe you could try mine and see if you get more accurate results or if mine has problems I don&#039;t know about.</description>
		<content:encoded><![CDATA[<p>I wrote a regular expression for validating an email address that is quite short and quite accurate, but I am trying to get more feed back.</p>
<p>Regular Expressions in C# (including a new comprehensive email pattern)<br />
<a href="http://www.rhyous.com/2010/06/15/regular-expressions-in-cincluding-a-new-comprehensive-email-pattern/" rel="nofollow">http://www.rhyous.com/2010/06/15/regular-expressions-in-cincluding-a-new-comprehensive-email-pattern/</a></p>
<p>I tried yours and it missed about 1/4th the emails in my list and so I thought maybe you could try mine and see if you get more accurate results or if mine has problems I don&#8217;t know about.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javin Paul</title>
		<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/comment-page-1#comment-1273</link>
		<dc:creator>Javin Paul</dc:creator>
		<pubDate>Thu, 06 Jan 2011 13:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=646#comment-1273</guid>
		<description>Does regular expression remains same across language e..g r&lt;a href=&quot;http://javarevisited.blogspot.com/search/label/regular%20expression&quot; rel=&quot;nofollow&quot;&gt;regex in unix&lt;/a&gt;, regex in java , regex in perl

are all they exactly same ?</description>
		<content:encoded><![CDATA[<p>Does regular expression remains same across language e..g r<a href="http://javarevisited.blogspot.com/search/label/regular%20expression" rel="nofollow">regex in unix</a>, regex in java , regex in perl</p>
<p>are all they exactly same ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Margish</title>
		<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/comment-page-1#comment-1094</link>
		<dc:creator>Margish</dc:creator>
		<pubDate>Fri, 19 Feb 2010 14:00:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=646#comment-1094</guid>
		<description>This worked for my task
[a-z]*\.*[a-z]*@[a-z]*\.[a-z]*</description>
		<content:encoded><![CDATA[<p>This worked for my task<br />
[a-z]*\.*[a-z]*@[a-z]*\.[a-z]*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/comment-page-1#comment-1052</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Fri, 06 Nov 2009 15:56:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=646#comment-1052</guid>
		<description>If you want to validate e-mail addresses by pinging their mail server just use EmailVerify.NET, a .NET component which can test e-mail syntactically, verify the DNS MX records for the each domain and connect to each mail server to check if the mailbox exists or not.

It works like a charm!!
There&#039;s also a nice demo on their website: http://www.emailverify.net

Hope this helps.</description>
		<content:encoded><![CDATA[<p>If you want to validate e-mail addresses by pinging their mail server just use EmailVerify.NET, a .NET component which can test e-mail syntactically, verify the DNS MX records for the each domain and connect to each mail server to check if the mailbox exists or not.</p>
<p>It works like a charm!!<br />
There&#8217;s also a nice demo on their website: <a href="http://www.emailverify.net" rel="nofollow">http://www.emailverify.net</a></p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john</title>
		<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/comment-page-1#comment-1037</link>
		<dc:creator>john</dc:creator>
		<pubDate>Thu, 29 Oct 2009 18:37:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=646#comment-1037</guid>
		<description>Hi, I could see one nice method here http://www.Tctcworld.com. if u need go through it..</description>
		<content:encoded><![CDATA[<p>Hi, I could see one nice method here <a href="http://www.Tctcworld.com" rel="nofollow">http://www.Tctcworld.com</a>. if u need go through it..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PimpThisBlog.com</title>
		<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/comment-page-1#comment-734</link>
		<dc:creator>PimpThisBlog.com</dc:creator>
		<pubDate>Tue, 09 Jun 2009 13:07:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=646#comment-734</guid>
		<description>&lt;strong&gt;Regular Expression for Email Address validation in C# &#124; TechArtifact...&lt;/strong&gt;

Thank you for submitting this cool story - Trackback from PimpThisBlog.com...</description>
		<content:encoded><![CDATA[<p><strong>Regular Expression for Email Address validation in C# | TechArtifact&#8230;</strong></p>
<p>Thank you for submitting this cool story &#8211; Trackback from PimpThisBlog.com&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DotNetBurner - C#</title>
		<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/comment-page-1#comment-733</link>
		<dc:creator>DotNetBurner - C#</dc:creator>
		<pubDate>Tue, 09 Jun 2009 13:07:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=646#comment-733</guid>
		<description>&lt;strong&gt;Regular Expression for Email Address validation in C# &#124; TechArtifact...&lt;/strong&gt;

DotNetBurner - burning hot .net content...</description>
		<content:encoded><![CDATA[<p><strong>Regular Expression for Email Address validation in C# | TechArtifact&#8230;</strong></p>
<p>DotNetBurner &#8211; burning hot .net content&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ankit Goyal</title>
		<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/comment-page-1#comment-720</link>
		<dc:creator>Ankit Goyal</dc:creator>
		<pubDate>Mon, 08 Jun 2009 13:40:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=646#comment-720</guid>
		<description>Micah u r rite as the ultimate validation for a email address is achieved when we ping the mail server for the specified email address...</description>
		<content:encoded><![CDATA[<p>Micah u r rite as the ultimate validation for a email address is achieved when we ping the mail server for the specified email address&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Micah Burnett</title>
		<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/comment-page-1#comment-719</link>
		<dc:creator>Micah Burnett</dc:creator>
		<pubDate>Mon, 08 Jun 2009 13:33:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=646#comment-719</guid>
		<description>I prefer a dumbed down the expression that catches most of the real-world problems instead of verifying every possible combination.  The ultimate validation is when the mail server rejects the address...then you know for sure!

&lt;a href=&quot;http://www.zeios.com/ourrepublic/&quot; rel=&quot;nofollow&quot;&gt;Our Republic&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I prefer a dumbed down the expression that catches most of the real-world problems instead of verifying every possible combination.  The ultimate validation is when the mail server rejects the address&#8230;then you know for sure!</p>
<p><a href="http://www.zeios.com/ourrepublic/" rel="nofollow">Our Republic</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

