python中,有关正则表达式re函数:compile、match、search、findall
摘要:
1、全局匹配函数 re.compile(pattern=pattern,re.S).findall(text)函数: compile 函数根据一个模式字符串和可选的标志参数生成一个正则表达式对象。该对象拥有一系列方法用于正则表达式匹配和替换。 2、re.match函数:(从第一字符开始匹配,不匹配则 阅读全文
posted @ 2017-07-23 09:10 小明在线 阅读(15753) 评论(0) 推荐(1) 编辑