<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 在Excel VBA中使用正则表达式</title>
	<atom:link href="http://iregex.org/blog/regex-in-excel-vba.html/feed" rel="self" type="application/rss+xml" />
	<link>http://iregex.org/blog/regex-in-excel-vba.html</link>
	<description>关注正则表达式和搜索引擎</description>
	<lastBuildDate>Fri, 12 Mar 2010 11:31:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: 姜乂元</title>
		<link>http://iregex.org/blog/regex-in-excel-vba.html/comment-page-1#comment-2693</link>
		<dc:creator>姜乂元</dc:creator>
		<pubDate>Fri, 05 Feb 2010 02:46:56 +0000</pubDate>
		<guid isPermaLink="false">http://iregex.org/?p=43#comment-2693</guid>
		<description>RegExp Sept 1 2004.xls这个文件无法下载了，搜索中发现一个网站http://regexlib.com，好象是一个正则表达式的案例库，感觉不错，只是英文的。</description>
		<content:encoded><![CDATA[<p>RegExp Sept 1 2004.xls这个文件无法下载了，搜索中发现一个网站http://regexlib.com，好象是一个正则表达式的案例库，感觉不错，只是英文的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rex</title>
		<link>http://iregex.org/blog/regex-in-excel-vba.html/comment-page-1#comment-2646</link>
		<dc:creator>rex</dc:creator>
		<pubDate>Thu, 28 Jan 2010 12:14:33 +0000</pubDate>
		<guid isPermaLink="false">http://iregex.org/?p=43#comment-2646</guid>
		<description>直接用汉字“个”和“月”来匹配试试？好像支持中文的。</description>
		<content:encoded><![CDATA[<p>直接用汉字“个”和“月”来匹配试试？好像支持中文的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: netcoffa</title>
		<link>http://iregex.org/blog/regex-in-excel-vba.html/comment-page-1#comment-2639</link>
		<dc:creator>netcoffa</dc:creator>
		<pubDate>Wed, 27 Jan 2010 02:13:24 +0000</pubDate>
		<guid isPermaLink="false">http://iregex.org/?p=43#comment-2639</guid>
		<description>不好意思，忘了说明环境：VBA，Excel 2003</description>
		<content:encoded><![CDATA[<p>不好意思，忘了说明环境：VBA，Excel 2003</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: netcoffa</title>
		<link>http://iregex.org/blog/regex-in-excel-vba.html/comment-page-1#comment-2638</link>
		<dc:creator>netcoffa</dc:creator>
		<pubDate>Wed, 27 Jan 2010 02:09:11 +0000</pubDate>
		<guid isPermaLink="false">http://iregex.org/?p=43#comment-2638</guid>
		<description>你好，我尝试用\u4e2a和\u6708识别中文“个”和“月”，结果提示错误。有什么技巧吗？</description>
		<content:encoded><![CDATA[<p>你好，我尝试用\u4e2a和\u6708识别中文“个”和“月”，结果提示错误。有什么技巧吗？</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: s953904</title>
		<link>http://iregex.org/blog/regex-in-excel-vba.html/comment-page-1#comment-494</link>
		<dc:creator>s953904</dc:creator>
		<pubDate>Sat, 02 May 2009 09:40:01 +0000</pubDate>
		<guid isPermaLink="false">http://iregex.org/?p=43#comment-494</guid>
		<description>感謝,說明及範例郵件已收到.</description>
		<content:encoded><![CDATA[<p>感謝,說明及範例郵件已收到.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: s953904</title>
		<link>http://iregex.org/blog/regex-in-excel-vba.html/comment-page-1#comment-492</link>
		<dc:creator>s953904</dc:creator>
		<pubDate>Fri, 01 May 2009 23:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://iregex.org/?p=43#comment-492</guid>
		<description>請問使用Excel VBA要如何找出雙引號或單引號中的內容呢?
例如:下面4行
define(&quot;_MB_NEWBB_VIEWS&quot;,&quot;人氣&quot;);
define(&#039;_MB_NEWBB_CRITERIA_TOPIC&#039;,&#039;主題&#039;);
define(&#039;_MB_NEWBB_TIME_DESC&#039;,&quot;正數為天數, 負數為小時&quot;);
define(&quot;_MB_NEWBB_CRITERIA_TEXT&quot;,&#039;文章內容&#039;);

我在Expresso中的Test Mode下[&quot;&#039;].+?[&quot;&#039;],可得到想要的結果.
但在Excel VBA中要如何使用呢？</description>
		<content:encoded><![CDATA[<p>請問使用Excel VBA要如何找出雙引號或單引號中的內容呢?<br />
例如:下面4行<br />
define(&#8220;_MB_NEWBB_VIEWS&#8221;,&#8221;人氣&#8221;);<br />
define(&#8216;_MB_NEWBB_CRITERIA_TOPIC&#8217;,'主題&#8217;);<br />
define(&#8216;_MB_NEWBB_TIME_DESC&#8217;,&#8221;正數為天數, 負數為小時&#8221;);<br />
define(&#8220;_MB_NEWBB_CRITERIA_TEXT&#8221;,&#8217;文章內容&#8217;);</p>
<p>我在Expresso中的Test Mode下["'].+?["'],可得到想要的結果.<br />
但在Excel VBA中要如何使用呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: .rex</title>
		<link>http://iregex.org/blog/regex-in-excel-vba.html/comment-page-1#comment-493</link>
		<dc:creator>.rex</dc:creator>
		<pubDate>Fri, 01 May 2009 22:37:06 +0000</pubDate>
		<guid isPermaLink="false">http://iregex.org/?p=43#comment-493</guid>
		<description>＠s953904:   
   
欢迎来自宝岛的朋友。你所问的问题的解答，已经以excel附件形式，发到你的邮箱了。code在excel内。   
   
匹配雙引號或單引號的正则表达式其基本语法如你所写：[&quot;&#039;]. ?[&quot;&#039;]。    
不过，为了精确，一般我们写作：([&quot;&#039;]). ?1，这样是确保前后的引号一致，即，如果前面是单引號，则后面也是；是双引号时亦然。    
    
在Excel中，单行模式（默认）下，我们可以使用.来匹配任意字符，此时.不能匹配换行符。    
多行模式是明确指出的，格式如：myRegExp.MultiLine = True    
此时，使用&lt;strong&gt;[sS]&lt;/strong&gt;来代替点号&lt;strong&gt;.&lt;/strong&gt;。    
    
在Excel中，全局模式需要明确指出：myRegExp.Global = True </description>
		<content:encoded><![CDATA[<p>＠s953904:   </p>
<p>欢迎来自宝岛的朋友。你所问的问题的解答，已经以excel附件形式，发到你的邮箱了。code在excel内。   </p>
<p>匹配雙引號或單引號的正则表达式其基本语法如你所写：[&quot;&#39;]. ?[&quot;&#39;]。<br />
不过，为了精确，一般我们写作：([&quot;&#39;]). ?1，这样是确保前后的引号一致，即，如果前面是单引號，则后面也是；是双引号时亦然。    </p>
<p>在Excel中，单行模式（默认）下，我们可以使用.来匹配任意字符，此时.不能匹配换行符。<br />
多行模式是明确指出的，格式如：myRegExp.MultiLine = True<br />
此时，使用<strong>[sS]</strong>来代替点号<strong>.</strong>。    </p>
<p>在Excel中，全局模式需要明确指出：myRegExp.Global = True</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xxzc</title>
		<link>http://iregex.org/blog/regex-in-excel-vba.html/comment-page-1#comment-276</link>
		<dc:creator>xxzc</dc:creator>
		<pubDate>Fri, 26 Dec 2008 05:35:09 +0000</pubDate>
		<guid isPermaLink="false">http://iregex.org/?p=43#comment-276</guid>
		<description>原来如此，我还以为如何^_^ </description>
		<content:encoded><![CDATA[<p>原来如此，我还以为如何^_^</p>
]]></content:encoded>
	</item>
</channel>
</rss>
