<?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: AS3 StringTokenizer</title>
	<atom:link href="http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/</link>
	<description></description>
	<pubDate>Tue, 16 Mar 2010 05:14:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: amakovetz</title>
		<link>http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/comment-page-1/#comment-75916</link>
		<dc:creator>amakovetz</dc:creator>
		<pubDate>Sun, 20 Jul 2008 18:26:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/#comment-75916</guid>
		<description>Very useful. 
I've appreciate.

Regards

Adrian</description>
		<content:encoded><![CDATA[<p>Very useful.<br />
I&#8217;ve appreciate.</p>
<p>Regards</p>
<p>Adrian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/comment-page-1/#comment-27154</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Thu, 17 Apr 2008 14:33:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/#comment-27154</guid>
		<description>I have to agree with djmci.  This is a fancy wrapper for the split function, which transforms it into a familiar Java idiom.  No doubt Java developers programming Actionscript will love it though.</description>
		<content:encoded><![CDATA[<p>I have to agree with djmci.  This is a fancy wrapper for the split function, which transforms it into a familiar Java idiom.  No doubt Java developers programming Actionscript will love it though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philip</title>
		<link>http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/comment-page-1/#comment-12322</link>
		<dc:creator>Philip</dc:creator>
		<pubDate>Sat, 08 Mar 2008 11:52:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/#comment-12322</guid>
		<description>Nice article and explanation, helped me lot to understand the full concept and very helpful explanation.

Regards

Philip</description>
		<content:encoded><![CDATA[<p>Nice article and explanation, helped me lot to understand the full concept and very helpful explanation.</p>
<p>Regards</p>
<p>Philip</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Actionscript Classes &#187; StringTokenizer</title>
		<link>http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/comment-page-1/#comment-3689</link>
		<dc:creator>Actionscript Classes &#187; StringTokenizer</dc:creator>
		<pubDate>Sun, 02 Dec 2007 01:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/#comment-3689</guid>
		<description>[...] http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/" rel="nofollow">http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eric</title>
		<link>http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/comment-page-1/#comment-3623</link>
		<dc:creator>eric</dc:creator>
		<pubDate>Wed, 14 Nov 2007 03:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/#comment-3623</guid>
		<description>The StringTokenizer API provides both an Enumeration and Iterator implementation which allows tokens to be accessed consistently, thus eliminating the need to manually, and redundantly provide a mechanism for retrieving tokens.</description>
		<content:encoded><![CDATA[<p>The StringTokenizer API provides both an Enumeration and Iterator implementation which allows tokens to be accessed consistently, thus eliminating the need to manually, and redundantly provide a mechanism for retrieving tokens.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: djmci</title>
		<link>http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/comment-page-1/#comment-3617</link>
		<dc:creator>djmci</dc:creator>
		<pubDate>Wed, 14 Nov 2007 01:43:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/#comment-3617</guid>
		<description>Is this any different than using the split function?

AS2:

var my_str:String = "P,A,T,S,Y";
var my_array:Array = my_str.split(",");
for (var i = 0; i</description>
		<content:encoded><![CDATA[<p>Is this any different than using the split function?</p>
<p>AS2:</p>
<p>var my_str:String = &#8220;P,A,T,S,Y&#8221;;<br />
var my_array:Array = my_str.split(&#8221;,&#8221;);<br />
for (var i = 0; i</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: elysian</title>
		<link>http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/comment-page-1/#comment-3577</link>
		<dc:creator>elysian</dc:creator>
		<pubDate>Fri, 02 Nov 2007 08:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2007/11/01/as3-stringtokenizer/#comment-3577</guid>
		<description>Cool, nice work Eric!
Cheers, Thomas</description>
		<content:encoded><![CDATA[<p>Cool, nice work Eric!<br />
Cheers, Thomas</p>
]]></content:encoded>
	</item>
</channel>
</rss>
