参考资料
- re — Regular expression operations - Python 3
- re --- 正则表达式操作 — Python 3 文档
- re — Regular expression operations — Python 3.8.1 documentation
- re --- 正则表达式操作 — Python 3.8.1 文档
- 【教程】详解Python正则表达式 – 在路上
- 【教程】详解Python正则表达式之: ‘.’ dot 点 匹配任意单个字符
- 【教程】详解Python正则表达式之: ‘^’ Caret 脱字符/插入符 匹配字符串开始
- 【教程】详解Python正则表达式之: ‘$’ dollar 美元符号 匹配字符串末尾
- 【教程】详解Python正则表达式之: ‘*’ star 星号 匹配0或多个
- 【教程】详解Python正则表达式之: [] bracket 中括号 匹配某集合内的字符
- 【教程】详解Python正则表达式之: ‘|’ vertical bar 竖杠
- 【教程】详解Python正则表达式之: (…) group 分组
- 【教程】详解Python正则表达式之: (?…) extension notation 扩展助记符
- 【教程】详解Python正则表达式之: (?:…) non-capturing group 非捕获组
- 【教程】详解Python正则表达式之: (?P
…) named group 带命名的组 - 【教程】详解Python正则表达式之: (?P=name) match earlier named group 匹配前面已命名的组
- 【教程】详解Python正则表达式之: (?(id/name)yes-pattern|no-pattern) 条件性匹配
- 【教程】详解Python正则表达式之: (?=…) lookahead assertion 前向匹配 /前向断言
- 【教程】详解Python正则表达式之: (?<=…) positive lookbehind assertion 后向匹配 /后向断言
- 【教程】详解Python正则表达式之: (?<=…) positive lookbehind assertion 后向匹配 /后向断言
- 【教程】详解Python正则表达式之:\s 匹配任一空白字符
- 【教程】详解Python正则表达式之:re.LOCALE re.L 本地化标志
- 【教程】详解Python正则表达式之:re.UNICODE re.U 统一码标志
- 【已解决】Python中用正则re去搜索分组的集合
- 【已解决】Python 3中用正则匹配多段的脚本内容
- 正则表达式之——先行断言(lookahead)和后行断言(lookbehind) - 赶路人儿
- 正则表达式后行断言 • 探索 ES2018 和 ES2019 - 众成翻译
- 無聊技術研究: RegExp 應用: lookahead , lookbehind
- 正则表达式:零宽断言(lookaround) - 许炎的个人博客
- 正则表达式中 Lookaround - 知乎
- 3分钟内理解Python的re模块中match、search、findall、finditer的区别python,match,search不若乘风来-CSDN博客
- 【已解决】Python中用正则re去搜索分组的集合
- 【已解决】用Python的正则re去匹配特定模式的成语