摘要:
http://blog.csdn.net/smilelance/article/details/65299501.Python正则式的基本用法import rep = re.compile(r'abc*')p.match(s)# 注意:match 只匹配 开头或结尾, 如果不想这样, 请用search# 也可以re.match(r'abc*', s)# 推荐第一种形式,compile用于加速1.1基本规则1.2重复1.2.1最小匹配与精确匹配1.3前向界定与后向界定1.4组的基本知识2.re模块的基本函数2.1使用compile加速2.2 match和searc 阅读全文