Capture and Name Parts of the Match (抓取和命名匹配中的部分)

前端之家收集整理的这篇文章主要介绍了Capture and Name Parts of the Match (抓取和命名匹配中的部分)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

需求1: (命名分组)

2001-02-03


Python:

\d\d(?P<year>\d\d)-(?P<month>\d\d)-(?P<day>\d\d)

Tcl:

regexp -linestop {\d\d(\d\d)-(\d\d)-(\d\d)} $subject sTmp year month day


需求2:(命名分组和前向引用)

2008-08-08


Python:

\d\d(?P<magic>\d\d)-(?P=magic)-(?P=magic)

原文链接:https://www.f2er.com/regex/361869.html

猜你在找的正则表达式相关文章