Daily: 2017年7月20日

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

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

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

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