<?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>n0on3.net &#187; regex</title>
	<atom:link href="http://www.n0on3.net/tag/regex/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.n0on3.net</link>
	<description>Keystrokes :.</description>
	<lastBuildDate>Thu, 15 Dec 2011 22:33:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Regular Expressions in Java</title>
		<link>http://www.n0on3.net/regex-in-java/</link>
		<comments>http://www.n0on3.net/regex-in-java/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 23:08:06 +0000</pubDate>
		<dc:creator>n0on3</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[regex]]></category>

		<guid isPermaLink="false">https://www.n0on3.net/?p=213</guid>
		<description><![CDATA[Need to use regular expressions (regex) for common tasks in Java? Here is a quick example: import java.util.regex.Pattern import java.util.regex.Matcher &#160; // ... &#160; Pattern pattern = Pattern.compile&#40;&#34;pattern&#34;&#41;; Matcher matcher = pattern.matcher&#40;&#34;subject&#34;&#41;; &#160; // find (sub)matches while&#40;matcher.find&#40;&#41;&#41; &#123; String nth_match = matcher.group&#40;&#41;; &#125; &#160; // veryfy that the whole subject matches the pattern Boolean does_it_matches ]]></description>
		<wfw:commentRss>http://www.n0on3.net/regex-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

