标签: python regex
可能重复: Python re.findall with groupdicts
在Python中,当使用具有多个捕获括号的正则表达式模式时,re.findall(pattern, string [,flags])返回字符串元组的列表。即使使用(?P<name>[pattern])捕获括号也是如此。有没有办法使用findall(或等效函数),同时保持以后使用组名的能力?
re.findall(pattern, string [,flags])
(?P<name>[pattern])
<
>