【教程】详解Python正则表达式之: (?:…) non-capturing group 非捕获组
crifan 11年前 (2013-09-06) 9840浏览 2评论
Python 2.7手册中的官网解释为: (?:...) A non-capturing version of regular parentheses. Matches whatever regular expression is insi...
regular expression for Python : re module
crifan 11年前 (2013-09-06) 9840浏览 2评论
Python 2.7手册中的官网解释为: (?:...) A non-capturing version of regular parentheses. Matches whatever regular expression is insi...
crifan 12年前 (2013-06-20) 3157浏览 0评论
【问题】 python程序求助 如图所示,现在想输出附件中cpress值开始不等于零和重新全部等于零时的“step time ”值,也就是想输出附件中“step time= 1.0001E-04 ”和“step time=2.500E-04” ...
crifan 12年前 (2013-05-24) 9027浏览 0评论
【问题】 别人遇到的问题: 求正则表达式牛人 怎样获得截获了多次的组的所有子串 Match.group(i)方法说明里说 如果一个组被截获了多次 则 截获了多次的组返回最后一次截获的子串 比如&q...
crifan 12年前 (2013-05-02) 8278浏览 0评论
【问题】 python中,用如下代码: #http://autoexplosion.com/cars/buy/150954.php #error : #TypeError: sequence item 1: expected ...
crifan 12年前 (2013-05-02) 63974浏览 12评论
待完成,最近更新:2013-05-08 【背景】 Python中的正则表达式方面的功能,很强大。 其中就包括re.sub,实现正则的替换。 功能很强大,所以导致用法稍微有点复杂。 所以当遇到稍微复杂的用法时候,就容易犯错。 所以此处,总...
crifan 12年前 (2013-04-29) 6458浏览 0评论
【问题】 python中,使用正则期间,用如下代码: #http://autoexplosion.com/cars/buy/150594.php foundMainType = re.search("http://autoexplosion...
crifan 12年前 (2012-12-15) 9856浏览 2评论
【问题】 Python中,对于一个字符串变量dataJsonStr,值为: {"data":{ "blogid":125...
crifan 12年前 (2012-12-09) 5114浏览 0评论
Python 2.7的官网文档中的解释是: (?!...) Matches if ... doesn’t match next. This is a negative lookahead assertion. For example, Isaa...
crifan 12年前 (2012-11-20) 8809浏览 5评论
根据Python手册中的每个特殊字符(special characters),特殊序列(special sequences),标志(flags),分别做详细的解释。 特殊字符(special characters): 【教...
crifan 12年前 (2012-11-20) 16166浏览 0评论
Python 2.7的官方手册中的解释是: \s When the LOCALE and UNICODE flags are not specified, matches any whitespace character; this is equ...