摘要: python使用正则表达式之前需要先倒入re模块 import re 可选标志位 re.A ASCII,使得 \w,\W,\b,\B,\s 和 \S 只匹配 ASCII 字符,而不匹配完整的 Unicode 字符。这个标志仅对 Unicode 模式有意义,并忽略字节模式。 re.I IGNORECA 阅读全文
posted @ 2019-08-12 16:58 ForLivetoLearn 阅读(1286) 评论(0) 推荐(0) 编辑