<?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: A Simple ForEach Loop Solution for JavaScript</title>
	<atom:link href="http://www.nickriggs.com/posts/a-simple-foreach-loop-solution-for-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nickriggs.com/posts/a-simple-foreach-loop-solution-for-javascript/</link>
	<description>Making stuff up about web development since last week.</description>
	<lastBuildDate>Wed, 01 Sep 2010 20:57:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Nick Riggs</title>
		<link>http://www.nickriggs.com/posts/a-simple-foreach-loop-solution-for-javascript/comment-page-1/#comment-216</link>
		<dc:creator>Nick Riggs</dc:creator>
		<pubDate>Wed, 02 Dec 2009 16:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=152#comment-216</guid>
		<description>@Justin, using the prototype above, sounds like you want something like:

s.split(&quot;/&quot;).each(function() {
  this.split(&quot;.&quot;).each(function() {
    //this = the string split by &quot;/&quot; then &quot;. &quot;
  });
});</description>
		<content:encoded><![CDATA[<p>@Justin, using the prototype above, sounds like you want something like:</p>
<p>s.split(&#8220;/&#8221;).each(function() {<br />
  this.split(&#8220;.&#8221;).each(function() {<br />
    //this = the string split by &#8220;/&#8221; then &#8220;. &#8221;<br />
  });<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Riggs</title>
		<link>http://www.nickriggs.com/posts/a-simple-foreach-loop-solution-for-javascript/comment-page-1/#comment-214</link>
		<dc:creator>Justin Riggs</dc:creator>
		<pubDate>Mon, 23 Nov 2009 22:54:59 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=152#comment-214</guid>
		<description>Hi Nick,

You seem to have a pretty good handle on this stuff, and I&#039;m just beginning with javascript. I was hoping you might take the time to walk me through something, what with us both being Riggs&#039; and all.

I&#039;ve got a function called downloadImage that takes the url, splits it at every &#039;/&#039; symbol, and throws the results into an array. I&#039;d then like to iterate through the array, and split the image name down even further by splitting it at the &#039;.&#039;&#039;s. Unfortunately, I can&#039;t figure out a way to iterate through the array. Does this sound possible to you? I just started looking at javascript this week, and have no concept of its possibilites and/or limitations.

thx.</description>
		<content:encoded><![CDATA[<p>Hi Nick,</p>
<p>You seem to have a pretty good handle on this stuff, and I&#8217;m just beginning with javascript. I was hoping you might take the time to walk me through something, what with us both being Riggs&#8217; and all.</p>
<p>I&#8217;ve got a function called downloadImage that takes the url, splits it at every &#8216;/&#8217; symbol, and throws the results into an array. I&#8217;d then like to iterate through the array, and split the image name down even further by splitting it at the &#8216;.&#8221;s. Unfortunately, I can&#8217;t figure out a way to iterate through the array. Does this sound possible to you? I just started looking at javascript this week, and have no concept of its possibilites and/or limitations.</p>
<p>thx.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
