<?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>MC+A &#187; Regular Expression</title>
	<atom:link href="http://www.mcplusa.com/blog/tag/regular-expression/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mcplusa.com</link>
	<description>Connecting Business Intellingence</description>
	<lastBuildDate>Tue, 13 Jul 2010 15:23:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Parsing a URL Encoded String for the parameter (match between two words)</title>
		<link>http://www.mcplusa.com/blog/2009/12/parsing-a-url-encoded-string-for-the-parameter/</link>
		<comments>http://www.mcplusa.com/blog/2009/12/parsing-a-url-encoded-string-for-the-parameter/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 06:37:06 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[Url Encoding]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/blog/2009/12/parsing-a-url-encoded-string-for-the-parameter/</guid>
		<description><![CDATA[I spent the last hour trying to find a regular expression to parse a url that was url-encoded or to match between two words.  Java was having a difficult time retrieving the url since it was parameter=something&#38; but rather proxystylesheet%3Ddefault_frontend%26.  The expression is: (?&#60;=proxystylesheet%3D).*?(?=%26) Where proxystylesheet is the parameter you are looking for.  This won&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I spent the last hour trying to find a regular expression to parse a url that was url-encoded or to match between two words.  Java was having a difficult time retrieving the url since it was parameter=something&amp; but rather proxystylesheet%3Ddefault_frontend%26.  The expression is:</p>
<p>(?&lt;=proxystylesheet%3D).*?(?=%26)</p>
<p>Where proxystylesheet is the parameter you are looking for.  This won&#8217;t find the value if it is at the end of the line but in my case, that is unnecessary.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/12/parsing-a-url-encoded-string-for-the-parameter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
