参考资料
- re — Regular expression operations - Python 3
- re — Regular expression operations — Python 3.8.1 documentation
- 【教程】详解Python正则表达式 – 在路上
- 【教程】详解Python正则表达式之: ‘^’ Caret 脱字符/插入符 匹配字符串开始
- 【教程】详解Python正则表达式之: ‘*’ star 星号 匹配0或多个
- 【教程】详解Python正则表达式之: (…) group 分组
- 【教程】详解Python正则表达式之: (?:…) non-capturing group 非捕获组
- 【教程】详解Python正则表达式之: (?P=name) match earlier named group 匹配前面已命名的组
- 【教程】详解Python正则表达式之: (?=…) lookahead assertion 前向匹配 /前向断言
- 【教程】详解Python正则表达式之: (?<=…) positive lookbehind assertion 后向匹配 /后向断言
- 【教程】详解Python正则表达式之:re.LOCALE re.L 本地化标志
- 【已解决】Python 3中用正则匹配多段的脚本内容
- 正则表达式后行断言 • 探索 ES2018 和 ES2019 - 众成翻译
- 正则表达式:零宽断言(lookaround) - 许炎的个人博客
- 3分钟内理解Python的re模块中match、search、findall、finditer的区别python,match,search不若乘风来-CSDN博客
- 【已解决】用Python的正则re去匹配特定模式的成语 *