可以用?P<name>的方法给正则匹配的部分命名。
例:要将<字母,数字>的部分命名为test
x = "abc <haha,123> test @@"
pattern = "(?P<test>\<\w+,\d+\>)"
m = re.search(pattern, x)
r = m.group("test")
print r
输出:
<haha,123>
原文地址:https://www.cnblogs.com/dplearning/p/8528537.html
时间: 2024-10-09 07:22:53