【教程】详解Python正则表达式之: (?…) extension notation 扩展助记符
crifan 12年前 (2012-11-17) 4233浏览 0评论
Python 手册的解释是: (?...) This is an extension notation (a '?' following a '(' is not meaningful otherwise). T...
regular expression for Python : re module
crifan 12年前 (2012-11-17) 4233浏览 0评论
Python 手册的解释是: (?...) This is an extension notation (a '?' following a '(' is not meaningful otherwise). T...
crifan 12年前 (2012-11-16) 23521浏览 3评论
之前自己曾被搞晕过很多次。 后来使用这些函数次数多了之后,终于比较清楚的弄懂了两者之间的区别和关系了。 尤其是一些细节方面的注意事项了。 在看下面的总结和代码之前,请先确保你对如下基本概念已经有所了解了: 【教程】详解Python正则表...
crifan 12年前 (2012-11-14) 14090浏览 2评论
先贴上Python 2.7 手册中的解释: (...) Matches whatever regular expression is inside the parentheses, and indicates the start ...
crifan 12年前 (2012-11-14) 5577浏览 0评论
Python 2.7的手册中的官网解释为: (?=...) Matches if ... matches next, but doesn’t consume any of the string. This is called a lookahea...
crifan 12年前 (2012-11-14) 6016浏览 0评论
Python 2.7手册中的官方解释是: (?<=...) Matches if the current position in the string is preceded by a match for ... that...
crifan 12年前 (2012-11-12) 23602浏览 2评论
Python 2.7的手册中的解释: (?P<name>...) Similar to regular parentheses, but the substring matched by the group is a...
crifan 12年前 (2012-11-12) 10371浏览 1评论
Python 2.7的手册中的官方解释是: (?P=name) Matches whatever text was matched by the earlier group named name. 下面就简单解释解释此含义。 1.首先,使用此...
crifan 12年前 (2012-11-05) 9420浏览 0评论
Python的手册中,是这么解释的: '|' A|B, where A and B can be arbitrary REs, creates a regular expression that will match either A or B....
crifan 12年前 (2012-10-29) 10128浏览 0评论
【问题】 在Python中,试图用: foundMainUrlOrPermalink = re.search("(?P<blogIdMainUrl>http://blog\.tianya\.cn/blogger/blog_mai...
crifan 13年前 (2012-03-16) 5167浏览 1评论
关于如何替换,参考这里: http://www.cnpythoner.com/post/65.html 解释有两种: (1)用字符串本身的replace方法 a = 'hello word'; a....