2011年08月26日 星期五 15:23
(?P<name>...)
For example, if the pattern is (?P<id>[a-zA-Z_]\w*), the group can be referenced by its name in arguments to methods of match objects, such as m.group('id')
or m.end('id')
, and also by name in pattern text (for example, (?P=id)) and replacement text (such as \g<id>
).
-------------------------------------------------
这个是手册里的解释,该怎么理解呢
2011年08月31日 星期三 08:58
2011年11月16日 星期三 07:04
分组命名
Zeuux © 2024
京ICP备05028076号