<?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>Dana Woodman &#187; regex</title>
	<atom:link href="http://www.danawoodman.com/tag/regex/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danawoodman.com</link>
	<description>The online home of Dana Woodman.</description>
	<lastBuildDate>Tue, 31 Aug 2010 22:05:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Regex: Match anything after a certain character</title>
		<link>http://www.danawoodman.com/2009/11/regex-match-anything-after-a-certain-character/</link>
		<comments>http://www.danawoodman.com/2009/11/regex-match-anything-after-a-certain-character/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 14:06:26 +0000</pubDate>
		<dc:creator>Dana Woodman</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular expressions]]></category>

		<guid isPermaLink="false">http://www.danawoodman.com/?p=103</guid>
		<description><![CDATA[A simple regular expression to match anything after a certain character.



Today I needed to match everything in a string after a certain character, in this case a quote (&#8220;). To accomplish this I needed to do the following:

"(.+$)

The " part can be any character or combination of characters and the (.+$) matches anything (.) to [...]]]></description>
			<content:encoded><![CDATA[<p>A simple regular expression to match anything after a certain character.</p>

<p><span id="more-103"></span></p>

<p>Today I needed to match everything in a string after a certain character, in this case a quote (&#8220;). To accomplish this I needed to do the following:</p>

<p><pre>"(.+$)</pre></p>

<p>The <code>"</code> part can be any character or combination of characters and the <code>(.+$)</code> matches anything (<code>.</code>) to the end of the line (<code>$</code>).</p>

<p>That&#8217;s about it, nothing fancy but useful none the less.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danawoodman.com/2009/11/regex-match-anything-after-a-certain-character/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
