<?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: Non-capturing groups in a regexp</title>
	<atom:link href="http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp</link>
	<description>scratched tallies on the prison wall</description>
	<pubDate>Mon, 01 Dec 2008 22:16:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Dave</title>
		<link>http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp#comment-122509</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 16 Sep 2008 12:38:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/?p=1515#comment-122509</guid>
		<description>I spent a few hours reading this all the way through. Need to practice it, but I'm at least at Geek Factor 8 now.

http://www.regular-expressions.info/tutorial.html</description>
		<content:encoded><![CDATA[<p>I spent a few hours reading this all the way through. Need to practice it, but I&#8217;m at least at Geek Factor 8 now.</p>
<p><a href="http://www.regular-expressions.info/tutorial.html" rel="nofollow">http://www.regular-expressions.info/tutorial.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eTM</title>
		<link>http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp#comment-121254</link>
		<dc:creator>eTM</dc:creator>
		<pubDate>Thu, 19 Jun 2008 22:50:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/?p=1515#comment-121254</guid>
		<description>But its not longer cool. Therefore it died.</description>
		<content:encoded><![CDATA[<p>But its not longer cool. Therefore it died.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MattW</title>
		<link>http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp#comment-121240</link>
		<dc:creator>MattW</dc:creator>
		<pubDate>Thu, 19 Jun 2008 09:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/?p=1515#comment-121240</guid>
		<description>Perl 6 actually still uses ( ) as a capturing group - non-capturing groups got promoted to [ ], which of course means character classes lost that prime position, but they were only demoted to  which fits quite nicely with the other things you can put inside  which all seem to be subrule-ish.

Also, Perl 6 development never died, and I don't see why people are saying it seems to have died when it's currently going faster than ever. Parrot's in pretty good shape, and Rakudo, the Perl 6 compiler for Parrot, is progressing quite rapidly now that most of the language is defined and some nice people have donated funding for part-time development.</description>
		<content:encoded><![CDATA[<p>Perl 6 actually still uses ( ) as a capturing group - non-capturing groups got promoted to [ ], which of course means character classes lost that prime position, but they were only demoted to  which fits quite nicely with the other things you can put inside  which all seem to be subrule-ish.</p>
<p>Also, Perl 6 development never died, and I don&#8217;t see why people are saying it seems to have died when it&#8217;s currently going faster than ever. Parrot&#8217;s in pretty good shape, and Rakudo, the Perl 6 compiler for Parrot, is progressing quite rapidly now that most of the language is defined and some nice people have donated funding for part-time development.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giacomo</title>
		<link>http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp#comment-121227</link>
		<dc:creator>Giacomo</dc:creator>
		<pubDate>Wed, 18 Jun 2008 11:14:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/?p=1515#comment-121227</guid>
		<description>eTM, thanks for the cheatsheet! very useful indeed</description>
		<content:encoded><![CDATA[<p>eTM, thanks for the cheatsheet! very useful indeed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eTM</title>
		<link>http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp#comment-121220</link>
		<dc:creator>eTM</dc:creator>
		<pubDate>Tue, 17 Jun 2008 19:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/?p=1515#comment-121220</guid>
		<description>http://www.ilovejackdaniels.com/regular_expressions_cheat_sheet.pdf
It's only one page, we assumed that your attention span is big enough for 1 page.</description>
		<content:encoded><![CDATA[<p><a href="http://www.ilovejackdaniels.com/regular_expressions_cheat_sheet.pdf" rel="nofollow">http://www.ilovejackdaniels.com/regular_expressions_cheat_sheet.pdf</a><br />
It&#8217;s only one page, we assumed that your attention span is big enough for 1 page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoffe</title>
		<link>http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp#comment-121219</link>
		<dc:creator>Stoffe</dc:creator>
		<pubDate>Tue, 17 Jun 2008 18:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/?p=1515#comment-121219</guid>
		<description>I use this all the time, and have done so for years. And so does everyone once they find out about it.

In fact, Perl 6 regexps acknowledges that this is such a common case that (?:) does not make any sense huffman-wise and shortens it to (). Or at least that's how I remember it. Capturing groups aren't shafted all the way down to (?:) though but something smarter.

I don't really remember, as Perl 6 development seemed to die years ago. Too bad, because the design had a lot of great thinkings like that, which other languages could have picked up even if you don't like Perl - it's always been one of the leader languages in that way.</description>
		<content:encoded><![CDATA[<p>I use this all the time, and have done so for years. And so does everyone once they find out about it.</p>
<p>In fact, Perl 6 regexps acknowledges that this is such a common case that (?:) does not make any sense huffman-wise and shortens it to (). Or at least that&#8217;s how I remember it. Capturing groups aren&#8217;t shafted all the way down to (?:) though but something smarter.</p>
<p>I don&#8217;t really remember, as Perl 6 development seemed to die years ago. Too bad, because the design had a lot of great thinkings like that, which other languages could have picked up even if you don&#8217;t like Perl - it&#8217;s always been one of the leader languages in that way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laszlo</title>
		<link>http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp#comment-121217</link>
		<dc:creator>Laszlo</dc:creator>
		<pubDate>Tue, 17 Jun 2008 17:47:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/?p=1515#comment-121217</guid>
		<description>I want this every time i use REs, and I just assumed such a thing didn't exist. This is definitely a contender for the most useful thing I've learned this month.</description>
		<content:encoded><![CDATA[<p>I want this every time i use REs, and I just assumed such a thing didn&#8217;t exist. This is definitely a contender for the most useful thing I&#8217;ve learned this month.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: uuuuuh</title>
		<link>http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp#comment-121216</link>
		<dc:creator>uuuuuh</dc:creator>
		<pubDate>Tue, 17 Jun 2008 17:36:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/?p=1515#comment-121216</guid>
		<description>Heh, that's geek factor seven at best. Geek factor nine doesn't start before mastering lookahead and lookbehind regular expressions.</description>
		<content:encoded><![CDATA[<p>Heh, that&#8217;s geek factor seven at best. Geek factor nine doesn&#8217;t start before mastering lookahead and lookbehind regular expressions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sil</title>
		<link>http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp#comment-121215</link>
		<dc:creator>sil</dc:creator>
		<pubDate>Tue, 17 Jun 2008 15:48:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/?p=1515#comment-121215</guid>
		<description>chuck: ha! Touche. You are right to bring that up, and well put. What can I say other than: I won't beat you for pointing out stuff like this.</description>
		<content:encoded><![CDATA[<p>chuck: ha! Touche. You are right to bring that up, and well put. What can I say other than: I won&#8217;t beat you for pointing out stuff like this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chuck</title>
		<link>http://www.kryogenix.org/days/2008/06/17/non-capturing-groups-in-a-regexp#comment-121214</link>
		<dc:creator>chuck</dc:creator>
		<pubDate>Tue, 17 Jun 2008 15:46:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/?p=1515#comment-121214</guid>
		<description>Because you beat us when the obvious things are pointed out to you.</description>
		<content:encoded><![CDATA[<p>Because you beat us when the obvious things are pointed out to you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
