<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Regular Expression Ninja</title>
	<link>http://ask.metafilter.com/91426/Regular-Expression-Ninja/</link>
	<description>Comments on Ask MetaFilter post Regular Expression Ninja</description>
	<pubDate>Wed, 14 May 2008 16:29:46 -0800</pubDate>
	<lastBuildDate>Wed, 14 May 2008 16:29:46 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Regular Expression Ninja</title>
		<link>http://ask.metafilter.com/91426/Regular-Expression-Ninja</link>	
		<description>I want to become a regular expression ninja (a black belt). Where should I start? &lt;br /&gt;&lt;br /&gt; I&apos;d prefer something interactive (vs. a book or blog post), like a website where I can test them out. I found &lt;a href=&quot;http://gskinner.com/RegExr/&quot;&gt;this&lt;/a&gt; site, and it&apos;s OK, but are there any others to choose from?</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2008:site.91426</guid>
		<pubDate>Wed, 14 May 2008 16:26:19 -0800</pubDate>
		<dc:creator>JPowers</dc:creator>
		
			<category>regexp</category>
		
			<category>regularexpression</category>
		
	</item> <item>
		<title>By: chrisamiller</title>
		<link>http://ask.metafilter.com/91426/Regular-Expression-Ninja#1340607</link>	
		<description>Where should I start?&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://ask.metafilter.com/91156/Idiot-proof-RegEx-creator-tool&quot;&gt;How about here&lt;/a&gt;?  There are lots of good links in that thread from Monday.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.91426-1340607</guid>
		<pubDate>Wed, 14 May 2008 16:29:46 -0800</pubDate>
		<dc:creator>chrisamiller</dc:creator>
	</item><item>
		<title>By: bonaldi</title>
		<link>http://ask.metafilter.com/91426/Regular-Expression-Ninja#1340617</link>	
		<description>&lt;a href=&quot;http://www.oreilly.com/catalog/9781565922570/&quot;&gt;Mastering Regular Expressions&lt;/a&gt; is the bible, and while practice really counts, so does deep understanding. I used regexps a lot, but it was sort of just switch-pulling until I read that, which took me the step beyond.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.91426-1340617</guid>
		<pubDate>Wed, 14 May 2008 16:36:36 -0800</pubDate>
		<dc:creator>bonaldi</dc:creator>
	</item><item>
		<title>By: wongcorgi</title>
		<link>http://ask.metafilter.com/91426/Regular-Expression-Ninja#1340637</link>	
		<description>&lt;a href=&quot;http://www.regular-expressions.info/regexbuddy.html&quot;&gt;RegexBuddy&lt;/a&gt; is the absolute best tool I&apos;ve used for learning and creating regexes.  Worth every penny.&lt;br&gt;
&lt;br&gt;
Basic regex info can be found on quick google searches (just google your programming languages + regular expressions).</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.91426-1340637</guid>
		<pubDate>Wed, 14 May 2008 16:53:16 -0800</pubDate>
		<dc:creator>wongcorgi</dc:creator>
	</item><item>
		<title>By: mmascolino</title>
		<link>http://ask.metafilter.com/91426/Regular-Expression-Ninja#1340750</link>	
		<description>2nd the book.  It truely is the gold standard reference work on RegEx.  It will teach you how the RegEx engines work, the different flavors of implementations and then some practical language specific advice.  &lt;br&gt;
&lt;br&gt;
If you use the jEdit editor, then check out &lt;a href=&quot;http://plugins.jedit.org/plugins/?RETest&quot;&gt;RETest&lt;/a&gt;.  It is a pretty neat tool to test regular expressions.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.91426-1340750</guid>
		<pubDate>Wed, 14 May 2008 18:44:28 -0800</pubDate>
		<dc:creator>mmascolino</dc:creator>
	</item><item>
		<title>By: trouserbat</title>
		<link>http://ask.metafilter.com/91426/Regular-Expression-Ninja#1340872</link>	
		<description>Nth-ing _Mastering Regular Expressions_.&lt;br&gt;
&lt;br&gt;
If you use Emacs*, there is a really nice interactive regular expression builder mode, Run M-x re-builder with another buffer open (preferably something you want to test searching in) and start adding regexps in the quotes. (Note that you will need to double-quote a few things, e.g. &quot; will be \\&quot; instead of \&quot;. (You&apos;re inputting a Lisp string, which is a quoted quoted regular expression, eh.) Let&apos;s home mefi didn&apos;t mangle that...) It will give you immediate feedback, particularly highlighting subexpressions (e.g. \(.*\)), which can be quite helpful.&lt;br&gt;
&lt;br&gt;
* While I would highly recommend it in the long term, Emacs is not a thing to take up lightly. Still, if (like me) you make a living editing any kind of formatted text, it will be quite kind to you at the decade level. It has its kinks, though; some for historical reasons, some for &quot;for programmers, by programmers, be damned&quot; cultural reasons.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.91426-1340872</guid>
		<pubDate>Wed, 14 May 2008 20:48:44 -0800</pubDate>
		<dc:creator>trouserbat</dc:creator>
	</item><item>
		<title>By: harmfulray</title>
		<link>http://ask.metafilter.com/91426/Regular-Expression-Ninja#1341243</link>	
		<description>&lt;a href=&quot;http://www.weitz.de/regex-coach/&quot;&gt;Regex-coach&lt;/a&gt; is good.  Scroll down for a screenshot.&lt;br&gt;
&lt;small&gt;(Also seconding trouserbat&apos;s Emacs recommendation)&lt;/small&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.91426-1341243</guid>
		<pubDate>Thu, 15 May 2008 08:37:37 -0800</pubDate>
		<dc:creator>harmfulray</dc:creator>
	</item><item>
		<title>By: zouhair</title>
		<link>http://ask.metafilter.com/91426/Regular-Expression-Ninja#1341325</link>	
		<description>woncorgi&apos;s &lt;a href=&quot;http://www.regular-expressions.info/index.html&quot;&gt;link&lt;/a&gt; has a great tutorial.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.91426-1341325</guid>
		<pubDate>Thu, 15 May 2008 09:55:12 -0800</pubDate>
		<dc:creator>zouhair</dc:creator>
	</item>
	</channel>
</rss>
