码迷,mamicode.com
首页 > 编程语言 > 详细

【python】给正则匹配部分命名

时间:2018-03-08 15:53:10      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:pattern   pre   print   code   pat   部分   att   name   markdown   

可以用?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>

【python】给正则匹配部分命名

标签:pattern   pre   print   code   pat   部分   att   name   markdown   

原文地址:https://www.cnblogs.com/dplearning/p/8528537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!