Python标准库re提供了正则表达式操作所需要的功能,既可以直接使用re模块中的方法,来实现,也可以把模式编译成正则表达式对象再使用. 方法 功能说明 complie(pattern[,flagss]) 创建模式对象 search(pattern,string[,flags]) 在整个字符串中寻找模板,返回match对象或None match(pattern,string[,flags]) 从字符串开始处匹配模式,返回match对象或None findall(pattern,string[,f…