目录 Python自学之路---Day13 常用的三个方法 匹配单个字符 边界匹配 数量匹配 逻辑与分组 编译正则表达式 其他方法 Python自学之路---Day13 常用的三个方法 1.re.match(pattern, string, flags=0) 2.re.search(pattern, string, flags=0) 3.re.findall(pattern, string, flags=0) 原型 re.match(pattern, string, flags=0) 参数 pa…