<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Nat On Testing &#187; Regular Expressions</title>
	<atom:link href="http://www.natontesting.com/tag/regular-expressions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.natontesting.com</link>
	<description>nathaniel ritmeyer&#039;s thoughts on automated software testing</description>
	<lastBuildDate>Wed, 18 Jan 2012 21:15:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Updated script to list all cucumber step definitions</title>
		<link>http://www.natontesting.com/2010/01/11/updated-script-to-list-all-cucumber-step-definitions/</link>
		<comments>http://www.natontesting.com/2010/01/11/updated-script-to-list-all-cucumber-step-definitions/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 17:57:05 +0000</pubDate>
		<dc:creator>Nat</dc:creator>
				<category><![CDATA[Automated Testing]]></category>
		<category><![CDATA[cucumber]]></category>
		<category><![CDATA[Example Code]]></category>
		<category><![CDATA[Making Life Easier]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Regular Expressions]]></category>

		<guid isPermaLink="false">http://www.natontesting.com/?p=703</guid>
		<description><![CDATA[In a previous post I put up a small script that would dump out all step definitions available in a cucumber project. Here&#8217;s an updated version&#8230; it hasn&#8217;t changed much apart from the output is now a html table that &#8230; <a href="http://www.natontesting.com/2010/01/11/updated-script-to-list-all-cucumber-step-definitions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.natontesting.com/2010/01/11/updated-script-to-list-all-cucumber-step-definitions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ruby regex code examples summary</title>
		<link>http://www.natontesting.com/2009/09/05/ruby-regex-code-example-summary/</link>
		<comments>http://www.natontesting.com/2009/09/05/ruby-regex-code-example-summary/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 13:47:06 +0000</pubDate>
		<dc:creator>Nat</dc:creator>
				<category><![CDATA[Example Code]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Regular Expressions]]></category>

		<guid isPermaLink="false">http://www.natontesting.com/?p=407</guid>
		<description><![CDATA[Coming from java, ruby&#8217;s regex implementation seems a bit obtuse. Here&#8217;s a bunch of code examples which I&#8217;ve put together as a mini-reference for my own use. If I&#8217;ve missed anything major, leave a comment. And sorry about the code &#8230; <a href="http://www.natontesting.com/2009/09/05/ruby-regex-code-example-summary/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.natontesting.com/2009/09/05/ruby-regex-code-example-summary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to know if you have a secure session in Watir</title>
		<link>http://www.natontesting.com/2009/08/28/how-to-know-if-you-have-a-secure-session-in-watir/</link>
		<comments>http://www.natontesting.com/2009/08/28/how-to-know-if-you-have-a-secure-session-in-watir/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 16:32:39 +0000</pubDate>
		<dc:creator>Nat</dc:creator>
				<category><![CDATA[Example Code]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Test::Unit]]></category>
		<category><![CDATA[WATIR]]></category>
		<category><![CDATA[Automated Testing]]></category>
		<category><![CDATA[Firewatir]]></category>
		<category><![CDATA[Regular Expressions]]></category>

		<guid isPermaLink="false">http://www.natontesting.com/?p=359</guid>
		<description><![CDATA[Sometimes you&#8217;re on a secure page, sometimes you&#8217;re not. How to know? There&#8217;s a very simple method you can write to find out, based on the browser&#8217;s current url. Here&#8217;s the method: def is_session_secure? @browser.url =~ /^https/ ? true : &#8230; <a href="http://www.natontesting.com/2009/08/28/how-to-know-if-you-have-a-secure-session-in-watir/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.natontesting.com/2009/08/28/how-to-know-if-you-have-a-secure-session-in-watir/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add 2 ruby regex patterns together</title>
		<link>http://www.natontesting.com/2009/08/12/how-to-add-2-ruby-regex-patterns-together/</link>
		<comments>http://www.natontesting.com/2009/08/12/how-to-add-2-ruby-regex-patterns-together/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 22:41:11 +0000</pubDate>
		<dc:creator>Nat</dc:creator>
				<category><![CDATA[Example Code]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Regular Expressions]]></category>

		<guid isPermaLink="false">http://www.natontesting.com/?p=262</guid>
		<description><![CDATA[Here&#8217;s a monkeypatch for ruby&#8217;s Regexp class that will allow you to concatenate 2 (or more) regex patterns together: class Regexp def +(r) Regexp.new(source + r.source) end end It comes in very useful when doing something like the following&#8230; protocol_rgx &#8230; <a href="http://www.natontesting.com/2009/08/12/how-to-add-2-ruby-regex-patterns-together/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.natontesting.com/2009/08/12/how-to-add-2-ruby-regex-patterns-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regular Expressions Pocket Reference</title>
		<link>http://www.natontesting.com/2006/12/05/regular-expressions-pocket-reference/</link>
		<comments>http://www.natontesting.com/2006/12/05/regular-expressions-pocket-reference/#comments</comments>
		<pubDate>Tue, 05 Dec 2006 07:01:33 +0000</pubDate>
		<dc:creator>Nat</dc:creator>
				<category><![CDATA[Automated Testing]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Rational Functional Tester]]></category>
		<category><![CDATA[Regular Expressions]]></category>

		<guid isPermaLink="false">http://natontesting.com/?p=20</guid>
		<description><![CDATA[I&#8217;ve not had this book for long, but if you spend a lot of time with regular expressions (specifically with Rational Functional Tester&#8217;s object recognition properties) you&#8217;ll find it very useful. I know I have&#8230; O&#8217;Reilly, prepare for some free &#8230; <a href="http://www.natontesting.com/2006/12/05/regular-expressions-pocket-reference/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.natontesting.com/2006/12/05/regular-expressions-pocket-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

