标签:python正则表达式

【Python 3.6.1】正则表达式:findall & compile

xixuefeng Python 2017-07-20 1,144 次浏览 , ,
一、findall:搜索string,以列表形式返回匹配字符串 [crayon-66a5007916cd6497442362/] 解析:findall查找“Ger”的字符串。 r""作用:告诉编译器这个string是个raw string,不要转义“\”,例如:\n在raw string就表示两个字符,...

【Python 3.6.1】正则表达式:re模块

xixuefeng Python 2017-07-20 1,885 次浏览
This module provides regular expression matching operations similar to those found in Perl. [crayon-66a500791840a455148325/]  
回顶部