<?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>My Crusade &#187; re</title>
	<atom:link href="http://www.jarodwang.cn/tag/re/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jarodwang.cn</link>
	<description>For the future we believe in.</description>
	<lastBuildDate>Thu, 26 Nov 2009 12:29:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>An accumulation of regular expressions</title>
		<link>http://www.jarodwang.cn/2008/07/05/an-accumulation-of-regular-expressions/</link>
		<comments>http://www.jarodwang.cn/2008/07/05/an-accumulation-of-regular-expressions/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 15:06:36 +0000</pubDate>
		<dc:creator>jarodwang</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[re]]></category>

		<guid isPermaLink="false">http://www.jarodwang.cn/?p=73</guid>
		<description><![CDATA[在检查一行文本时，^代表一行的开始，$代表结束。
&#124;是一个非常简捷的元字符（metacharacter），它的意思是“或”（or）。依靠它，我们能够把不同的子表达式组合成一个总的表达式，而这个总的表达式又能够匹配任意的子表达式。
egrep的命令行参数“-i”表示进行忽略大小写的匹配。
元字符+表示之前紧邻的元素出现一次或多次，而*表示之前紧邻的元素任意多次，或者不出现。
使用\+来匹配字符串中出现的“+”号。
To be continued
]]></description>
			<content:encoded><![CDATA[<p>在检查一行文本时，^代表一行的开始，$代表结束。</p>
<p>|是一个非常简捷的元字符（metacharacter），它的意思是“或”（or）。依靠它，我们能够把不同的子表达式组合成一个总的表达式，而这个总的表达式又能够匹配任意的子表达式。</p>
<p>egrep的命令行参数“-i”表示进行忽略大小写的匹配。</p>
<p>元字符+表示之前紧邻的元素出现一次或多次，而*表示之前紧邻的元素任意多次，或者不出现。</p>
<p>使用\+来匹配字符串中出现的“+”号。</p>
<p>To be continued</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarodwang.cn/2008/07/05/an-accumulation-of-regular-expressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
