<?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: How to validate email, SSN, phone number in Java using Regular expressions.</title>
	<atom:link href="http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/</link>
	<description>Effective programming and blogging tips by Zaheer Paracha</description>
	<lastBuildDate>Thu, 18 Mar 2010 17:34:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: tiensstore</title>
		<link>http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/comment-page-1/#comment-885</link>
		<dc:creator>tiensstore</dc:creator>
		<pubDate>Mon, 07 Dec 2009 10:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/java_regex_validation/#comment-885</guid>
		<description>Interesting and nice article.............. thanks for the post</description>
		<content:encoded><![CDATA[<p>Interesting and nice article&#8230;&#8230;&#8230;&#8230;.. thanks for the post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dasfasf</title>
		<link>http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/comment-page-1/#comment-424</link>
		<dc:creator>dasfasf</dc:creator>
		<pubDate>Thu, 11 Jun 2009 08:24:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/java_regex_validation/#comment-424</guid>
		<description>nene NO 1...aakaleste annam pedatha</description>
		<content:encoded><![CDATA[<p>nene NO 1&#8230;aakaleste annam pedatha</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Nettles</title>
		<link>http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/comment-page-1/#comment-388</link>
		<dc:creator>Brian Nettles</dc:creator>
		<pubDate>Tue, 28 Apr 2009 01:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/java_regex_validation/#comment-388</guid>
		<description>Yes, finally, a validation that works.  Thank you for putting this together.</description>
		<content:encoded><![CDATA[<p>Yes, finally, a validation that works.  Thank you for putting this together.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sivaraja</title>
		<link>http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/comment-page-1/#comment-362</link>
		<dc:creator>sivaraja</dc:creator>
		<pubDate>Wed, 11 Mar 2009 13:22:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/java_regex_validation/#comment-362</guid>
		<description>Really useful post...</description>
		<content:encoded><![CDATA[<p>Really useful post&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: (Ultimate) Java Regular Expression to validate (any) email address. &#124; zParacha.com</title>
		<link>http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/comment-page-1/#comment-310</link>
		<dc:creator>(Ultimate) Java Regular Expression to validate (any) email address. &#124; zParacha.com</dc:creator>
		<pubDate>Sun, 01 Feb 2009 21:55:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/java_regex_validation/#comment-310</guid>
		<description>[...] post about Java regular expression gets a lot of hits daily. Someone commented that the regular [...]</description>
		<content:encoded><![CDATA[<p>[...] post about Java regular expression gets a lot of hits daily. Someone commented that the regular [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A2D</title>
		<link>http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/comment-page-1/#comment-199</link>
		<dc:creator>A2D</dc:creator>
		<pubDate>Thu, 12 Jun 2008 09:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/java_regex_validation/#comment-199</guid>
		<description>zparacha, I&#039;m sure you&#039;re aware this email validator code doesn&#039;t cope with all aspects of the RFC. So should point out it is not definitive (but then what is?)
Was using similar logic until working with an NHS hospital trust in the UK who happily allow apostrophes in the user part of the address (before @) e.g. kathy.o&#039;malley@xxx.nhs.uk 
After some argument needless to say the client won by waving his copy of the RFC around. Can&#039;t imagine what problems these users have in general on the web when entering their email addresses, but I now use the simple .+@.+\\.[a-z]+ because I&#039;m fed up with fighting.

As kajbj states at:
http://forum.java.sun.com/thread.jspa?threadID=5210483&amp;messageID=9848968

&quot;What about not performing validation at all? (I&#039;m serious) Why do people validate email addresses? Either send a verification mail to the address or live with the fact that people will enter addresses that might be valid according to the RFC but don&#039;t work.&quot;</description>
		<content:encoded><![CDATA[<p>zparacha, I&#8217;m sure you&#8217;re aware this email validator code doesn&#8217;t cope with all aspects of the RFC. So should point out it is not definitive (but then what is?)<br />
Was using similar logic until working with an NHS hospital trust in the UK who happily allow apostrophes in the user part of the address (before @) e.g. kathy.o&#8217;malley@xxx.nhs.uk<br />
After some argument needless to say the client won by waving his copy of the RFC around. Can&#8217;t imagine what problems these users have in general on the web when entering their email addresses, but I now use the simple .+@.+\\.[a-z]+ because I&#8217;m fed up with fighting.</p>
<p>As kajbj states at:<br />
<a href="http://forum.java.sun.com/thread.jspa?threadID=5210483&amp;messageID=9848968" rel="nofollow">http://forum.java.sun.com/thread.jspa?threadID=5210483&amp;messageID=9848968</a></p>
<p>&#8220;What about not performing validation at all? (I&#8217;m serious) Why do people validate email addresses? Either send a verification mail to the address or live with the fact that people will enter addresses that might be valid according to the RFC but don&#8217;t work.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Su</title>
		<link>http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/comment-page-1/#comment-189</link>
		<dc:creator>Su</dc:creator>
		<pubDate>Thu, 22 May 2008 15:11:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/java_regex_validation/#comment-189</guid>
		<description>Really helpful! Thanks..</description>
		<content:encoded><![CDATA[<p>Really helpful! Thanks..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Java R</title>
		<link>http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/comment-page-1/#comment-164</link>
		<dc:creator>Java R</dc:creator>
		<pubDate>Fri, 25 Apr 2008 16:26:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/java_regex_validation/#comment-164</guid>
		<description>Very nice article...Thank you!</description>
		<content:encoded><![CDATA[<p>Very nice article&#8230;Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Validate email address using JavaScript regular expression</title>
		<link>http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/comment-page-1/#comment-107</link>
		<dc:creator>Validate email address using JavaScript regular expression</dc:creator>
		<pubDate>Fri, 08 Feb 2008 05:00:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/java_regex_validation/#comment-107</guid>
		<description>[...] month I wrote about regular expressions in Java, today I&#8217;ll show you how to use regular expression in JavaScript to validate email [...]</description>
		<content:encoded><![CDATA[<p>[...] month I wrote about regular expressions in Java, today I&#8217;ll show you how to use regular expression in JavaScript to validate email [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deliggit.com &#124; The social sites' most interesting urls</title>
		<link>http://www.zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/comment-page-1/#comment-82</link>
		<dc:creator>Deliggit.com &#124; The social sites' most interesting urls</dc:creator>
		<pubDate>Fri, 01 Feb 2008 09:22:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/java_regex_validation/#comment-82</guid>
		<description>&lt;strong&gt;How To essentials - Regular expressions in Java &#124; Deliggit.com...&lt;/strong&gt;

zparacha.com  How to validate email, SSN, phone number in Java using Regular expressions.  This...</description>
		<content:encoded><![CDATA[<p><strong>How To essentials &#8211; Regular expressions in Java | Deliggit.com&#8230;</strong></p>
<p>zparacha.com</p>
<p> How to validate email, SSN, phone number in Java using Regular expressions.</p>
<p> This&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
