<?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: Breaking It Down: Regular Expressions</title>
	<atom:link href="http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/</link>
	<description>the most delicious form of communication</description>
	<lastBuildDate>Tue, 20 Oct 2009 21:29:52 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Twitted by Willisjames9595</title>
		<link>http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/comment-page-2/#comment-271</link>
		<dc:creator>Twitted by Willisjames9595</dc:creator>
		<pubDate>Tue, 08 Sep 2009 04:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.mobilitea.com/blog/?p=36#comment-271</guid>
		<description>[...] This post was Twitted by Willisjames9595 [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was Twitted by Willisjames9595 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Twitted by mamapeach42</title>
		<link>http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/comment-page-2/#comment-270</link>
		<dc:creator>Twitted by mamapeach42</dc:creator>
		<pubDate>Fri, 28 Aug 2009 21:11:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.mobilitea.com/blog/?p=36#comment-270</guid>
		<description>[...] This post was Twitted by mamapeach42 [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was Twitted by mamapeach42 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nrg_alpha</title>
		<link>http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/comment-page-2/#comment-214</link>
		<dc:creator>nrg_alpha</dc:creator>
		<pubDate>Wed, 12 Aug 2009 18:09:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mobilitea.com/blog/?p=36#comment-214</guid>
		<description>@Article Author:

Two things to note:

a) depending on your locale, \d might also match exponents. One sure fire way is to explicitly declare 0-9 instead.

b) If you place the dash as the very first or very last character within the character class, you do not need to escape it, as regex will treat it as a literal, and not a range.

@f3nd3r

The difference between [] and () is simple. [] is a character class. This checks for a single character at the current location in a string. So if I have x[ab]z for example, what this means, is match an x, followed by either an a or b (but not both, as this is for a single character), followed by a z. When dealing with (), we are talking about group caturing. This matches whatever is found inside and stored as a variable (which can be reused in the expression as a backreference).  A more detailed explanation can be found here:
http://www.regular-expressions.info/brackets.html</description>
		<content:encoded><![CDATA[<p>@Article Author:</p>
<p>Two things to note:</p>
<p>a) depending on your locale, \d might also match exponents. One sure fire way is to explicitly declare 0-9 instead.</p>
<p>b) If you place the dash as the very first or very last character within the character class, you do not need to escape it, as regex will treat it as a literal, and not a range.</p>
<p>@f3nd3r</p>
<p>The difference between [] and () is simple. [] is a character class. This checks for a single character at the current location in a string. So if I have x[ab]z for example, what this means, is match an x, followed by either an a or b (but not both, as this is for a single character), followed by a z. When dealing with (), we are talking about group caturing. This matches whatever is found inside and stored as a variable (which can be reused in the expression as a backreference).  A more detailed explanation can be found here:<br />
<a href="http://www.regular-expressions.info/brackets.html" rel="nofollow">http://www.regular-expressions.info/brackets.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Things I like: Rubular - mikegrouchy.com</title>
		<link>http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/comment-page-2/#comment-206</link>
		<dc:creator>Things I like: Rubular - mikegrouchy.com</dc:creator>
		<pubDate>Mon, 10 Aug 2009 16:12:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mobilitea.com/blog/?p=36#comment-206</guid>
		<description>[...] I like: Rubular  Recently Josh wrote a blog post about regex  and it brought the thought of having an on-hand regex tester [...]</description>
		<content:encoded><![CDATA[<p>[...] I like: Rubular  Recently Josh wrote a blog post about regex  and it brought the thought of having an on-hand regex tester [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Master Cleanse Journal R2.D6 &#124; Detox Diet Information</title>
		<link>http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/comment-page-2/#comment-198</link>
		<dc:creator>Master Cleanse Journal R2.D6 &#124; Detox Diet Information</dc:creator>
		<pubDate>Sat, 08 Aug 2009 15:52:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.mobilitea.com/blog/?p=36#comment-198</guid>
		<description>[...] Breaking It Down: Regular Expressions - mobilitea.com/blog [...]</description>
		<content:encoded><![CDATA[<p>[...] Breaking It Down: Regular Expressions &#8211; mobilitea.com/blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Too scared to use Regexp!!!!!!! &#171; Create possibility</title>
		<link>http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/comment-page-2/#comment-156</link>
		<dc:creator>Too scared to use Regexp!!!!!!! &#171; Create possibility</dc:creator>
		<pubDate>Sat, 01 Aug 2009 14:17:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.mobilitea.com/blog/?p=36#comment-156</guid>
		<description>[...] You can see the long series of words arranged in some confusing manner, that is called as Regexp.I found a very simple and interesting article on understanding Regexp as fresher. BreakingItDown [...]</description>
		<content:encoded><![CDATA[<p>[...] You can see the long series of words arranged in some confusing manner, that is called as Regexp.I found a very simple and interesting article on understanding Regexp as fresher. BreakingItDown [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jlgosse</title>
		<link>http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/comment-page-2/#comment-50</link>
		<dc:creator>jlgosse</dc:creator>
		<pubDate>Tue, 28 Jul 2009 12:26:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.mobilitea.com/blog/?p=36#comment-50</guid>
		<description>Thanks man. I&#039;m pretty much the next Mark Brophy. Isn&#039;t that cool? Look out for my podcast series soon too. The first is just an introduction to me for the most part, but I plan on it being interesting!</description>
		<content:encoded><![CDATA[<p>Thanks man. I&#8217;m pretty much the next Mark Brophy. Isn&#8217;t that cool? Look out for my podcast series soon too. The first is just an introduction to me for the most part, but I plan on it being interesting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark B.</title>
		<link>http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/comment-page-2/#comment-49</link>
		<dc:creator>Mark B.</dc:creator>
		<pubDate>Mon, 27 Jul 2009 23:41:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.mobilitea.com/blog/?p=36#comment-49</guid>
		<description>Jesus Josh, your article just came up in my delicious feed.  Nice going!</description>
		<content:encoded><![CDATA[<p>Jesus Josh, your article just came up in my delicious feed.  Nice going!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Twitted by feeloow</title>
		<link>http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/comment-page-1/#comment-48</link>
		<dc:creator>Twitted by feeloow</dc:creator>
		<pubDate>Mon, 27 Jul 2009 13:22:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mobilitea.com/blog/?p=36#comment-48</guid>
		<description>[...] This post was Twitted by feeloow [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was Twitted by feeloow [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Twitted by TM_Technology</title>
		<link>http://www.mobilitea.com/blog/2009/07/22/breaking-it-down-regular-expressions/comment-page-1/#comment-47</link>
		<dc:creator>Twitted by TM_Technology</dc:creator>
		<pubDate>Mon, 27 Jul 2009 08:50:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mobilitea.com/blog/?p=36#comment-47</guid>
		<description>[...] This post was Twitted by TM_Technology [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was Twitted by TM_Technology [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
