<?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"
	>
<channel>
	<title>Comments on: ActionScript Email Validation</title>
	<atom:link href="http://www.helmutgranda.com/2006/10/06/email-validation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.helmutgranda.com/2006/10/06/email-validation/</link>
	<description>learning through interaction</description>
	<pubDate>Sun, 27 Jul 2008 01:13:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: dfm</title>
		<link>http://www.helmutgranda.com/2006/10/06/email-validation/#comment-15761</link>
		<dc:creator>dfm</dc:creator>
		<pubDate>Tue, 27 May 2008 14:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.helmutgranda.com/2006/10/06/email-validation/#comment-15761</guid>
		<description>[code]
function is_valid_email(email:String):Boolean {
	var emailRgx:RegExp = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
	///^[a-zA-Z0-9][-._a-zA-Z0-9]*@([a-zA-Z0-9]*.)+[a-zA-Z]{2,6}$/;
	trace(emailRgx.test(email));
	return emailRgx.test(email);
}
is_valid_email("c@j.co");
[/code]</description>
		<content:encoded><![CDATA[<p>[code]<br />
function is_valid_email(email:String):Boolean {<br />
	var emailRgx:RegExp = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;<br />
	///^[a-zA-Z0-9][-._a-zA-Z0-9]*@([a-zA-Z0-9]*.)+[a-zA-Z]{2,6}$/;<br />
	trace(emailRgx.test(email));<br />
	return emailRgx.test(email);<br />
}<br />
is_valid_email(&#8221;c@j.co&#8221;);<br />
[/code]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chandramani</title>
		<link>http://www.helmutgranda.com/2006/10/06/email-validation/#comment-14245</link>
		<dc:creator>chandramani</dc:creator>
		<pubDate>Thu, 10 Apr 2008 06:16:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.helmutgranda.com/2006/10/06/email-validation/#comment-14245</guid>
		<description>Hello,

     i want email validation with flash action script which i have
 apply here the code :

validate_btn.onRelease = function() {
	indexOfAt = email.text.indexOf("@");
	lastIndexOfDot = email.text.lastIndexOf(".");
	if (indexOfAt != -1 &#38;&#38; lastIndexOfDot != -1) {
		if (lastIndexOfDot</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>     i want email validation with flash action script which i have<br />
 apply here the code :</p>
<p>validate_btn.onRelease = function() {<br />
	indexOfAt = email.text.indexOf(&#8221;@&#8221;);<br />
	lastIndexOfDot = email.text.lastIndexOf(&#8221;.&#8221;);<br />
	if (indexOfAt != -1 &amp;&amp; lastIndexOfDot != -1) {<br />
		if (lastIndexOfDot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.helmutgranda.com/2006/10/06/email-validation/#comment-7617</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 14 Aug 2007 08:40:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.helmutgranda.com/2006/10/06/email-validation/#comment-7617</guid>
		<description>&lt;code&gt;
// minimum a@a.us
if ((e.indexOf("@") &#62; 0) &#38;&#38;
    (e.lastIndexOf(".") &#62; (e.indexOf("@") + 1)) &#38;&#38;
    (e.lastIndexOf(".") &lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code><br />
// minimum <a href="mailto:a@a.us">a@a.us</a><br />
if ((e.indexOf(&#8221;@&#8221;) &gt; 0) &amp;&amp;<br />
    (e.lastIndexOf(&#8221;.&#8221;) &gt; (e.indexOf(&#8221;@&#8221;) + 1)) &amp;&amp;<br />
    (e.lastIndexOf(&#8221;.&#8221;) </code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.helmutgranda.com/2006/10/06/email-validation/#comment-7616</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 14 Aug 2007 08:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.helmutgranda.com/2006/10/06/email-validation/#comment-7616</guid>
		<description>&lt;code&gt;
// a minimum a@a.us is require
if ((emailString.indexOf("@") &#62; 0) &#38;&#38;
	(emailString.lastIndexOf(".") &#62; (emailString.indexOf("@") + 1)) &#38;&#38;
	(emailString.lastIndexOf(".") &lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code><br />
// a minimum <a href="mailto:a@a.us">a@a.us</a> is require<br />
if ((emailString.indexOf(&#8221;@&#8221;) &gt; 0) &amp;&amp;<br />
	(emailString.lastIndexOf(&#8221;.&#8221;) &gt; (emailString.indexOf(&#8221;@&#8221;) + 1)) &amp;&amp;<br />
	(emailString.lastIndexOf(&#8221;.&#8221;) </code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.helmutgranda.com/2006/10/06/email-validation/#comment-7615</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 14 Aug 2007 08:10:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.helmutgranda.com/2006/10/06/email-validation/#comment-7615</guid>
		<description>How about like this ???
if (e.indexOf("@") != -1 &#38;&#38; ( e.lastIndexOf(".") &#62; e.indexOf("@") ) ) {
trace("success");
}else{
trace("error"); 
}</description>
		<content:encoded><![CDATA[<p>How about like this ???<br />
if (e.indexOf(&#8221;@&#8221;) != -1 &amp;&amp; ( e.lastIndexOf(&#8221;.&#8221;) &gt; e.indexOf(&#8221;@&#8221;) ) ) {<br />
trace(&#8221;success&#8221;);<br />
}else{<br />
trace(&#8221;error&#8221;);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohammed Zainal</title>
		<link>http://www.helmutgranda.com/2006/10/06/email-validation/#comment-5690</link>
		<dc:creator>Mohammed Zainal</dc:creator>
		<pubDate>Mon, 11 Jun 2007 12:11:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.helmutgranda.com/2006/10/06/email-validation/#comment-5690</guid>
		<description>very good one but what if you got an email like me.u@gmail.com ?
it will return it false ...

any idea ?</description>
		<content:encoded><![CDATA[<p>very good one but what if you got an email like <a href="mailto:me.u@gmail.com">me.u@gmail.com</a> ?<br />
it will return it false &#8230;</p>
<p>any idea ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
