<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>记忆博客园 - 正则表达试应用总结</title><link>http://blog.csdn.net/remanticmemory/category/295011.aspx</link><description /><dc:language>zh-CN</dc:language><lastUpdateTime>Thu, 27 Sep 2007 08:59:28 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>RemanticMemory</dc:creator><title>一篇很好的正则表达式入门教程 </title><link>http://blog.csdn.net/remanticmemory/archive/2007/04/24/1577045.aspx</link><pubDate>Tue, 24 Apr 2007 10:13:00 GMT</pubDate><guid>http://blog.csdn.net/remanticmemory/archive/2007/04/24/1577045.aspx</guid><wfw:comment>http://blog.csdn.net/remanticmemory/comments/1577045.aspx</wfw:comment><comments>http://blog.csdn.net/remanticmemory/archive/2007/04/24/1577045.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/remanticmemory/comments/commentRss/1577045.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1577045</trackback:ping><description>正则表达式是用于进行文本匹配的工具，所以本文里多次提到了在字符串里搜索/查找，这种说法的意思是在给定的字符串中，查找与给定的正则表达式相匹配的部分。有可能字符串里有不止一个部分满足给定的正则表达式，这时每一个这样的部分被称为一个匹配。一种是动词性的，比如说在字符串里匹配正则表达式；&lt;img src ="http://blog.csdn.net/remanticmemory/aggbug/1577045.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>RemanticMemory</dc:creator><title>经典正则表达式 </title><link>http://blog.csdn.net/remanticmemory/archive/2007/04/18/1569786.aspx</link><pubDate>Wed, 18 Apr 2007 22:37:00 GMT</pubDate><guid>http://blog.csdn.net/remanticmemory/archive/2007/04/18/1569786.aspx</guid><wfw:comment>http://blog.csdn.net/remanticmemory/comments/1569786.aspx</wfw:comment><comments>http://blog.csdn.net/remanticmemory/archive/2007/04/18/1569786.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/remanticmemory/comments/commentRss/1569786.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1569786</trackback:ping><description>收集一些常用的正则表达式。&lt;img src ="http://blog.csdn.net/remanticmemory/aggbug/1569786.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>RemanticMemory</dc:creator><title>常用的几个正则表达式</title><link>http://blog.csdn.net/remanticmemory/archive/2007/04/18/1569779.aspx</link><pubDate>Wed, 18 Apr 2007 22:29:00 GMT</pubDate><guid>http://blog.csdn.net/remanticmemory/archive/2007/04/18/1569779.aspx</guid><wfw:comment>http://blog.csdn.net/remanticmemory/comments/1569779.aspx</wfw:comment><comments>http://blog.csdn.net/remanticmemory/archive/2007/04/18/1569779.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/remanticmemory/comments/commentRss/1569779.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1569779</trackback:ping><description>有关正则表达式 
1.只能输入数字和英文的： 


2.只能输入数字的： 


3.只能输入全角的： 


4.只能输入汉字的： 


&lt;img src ="http://blog.csdn.net/remanticmemory/aggbug/1569779.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>RemanticMemory</dc:creator><title>正则表达式帮助</title><link>http://blog.csdn.net/remanticmemory/archive/2007/04/16/1566738.aspx</link><pubDate>Mon, 16 Apr 2007 16:49:00 GMT</pubDate><guid>http://blog.csdn.net/remanticmemory/archive/2007/04/16/1566738.aspx</guid><wfw:comment>http://blog.csdn.net/remanticmemory/comments/1566738.aspx</wfw:comment><comments>http://blog.csdn.net/remanticmemory/archive/2007/04/16/1566738.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/remanticmemory/comments/commentRss/1566738.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1566738</trackback:ping><description>字符描述： \：将下一个字符标记为特殊字符或字面值。与指定区间内的任何字符匹配。与不在指定区间内的字符匹配。例如，"[m-z]"与不在"m"到"z"之间的任何字符匹配。\b ：与单词的边界匹配，即单词与空格之间的位置。\d ：与一个数字字符匹配。\D ：与非数字的字符匹配。\n ：与换行符字符匹配。\r ：与回车字符匹配。\s ：与任何白字符匹配，包括空格、制表符、分页符等。\S ：与任何非空白的字符匹配。\t ：与制表符匹配。\w ：与任何单词字符匹配，包括下划线。\W ：与任何非单词字符匹配。&lt;img src ="http://blog.csdn.net/remanticmemory/aggbug/1566738.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>