用法:
Match.groupdict(default=None)
返回包含匹配的所有
named
子组的字典,以子组名称为键。default
参数用于未参加比赛的组;它默认为None
。例如:>>> m = re.match(r"(?P<first_name>\w+) (?P<last_name>\w+)", "Malcolm Reynolds") >>> m.groupdict() {'first_name': 'Malcolm', 'last_name': 'Reynolds'}
相关用法
- Python re.Match.group用法及代码示例
- Python re.Match.groups用法及代码示例
- Python re.Match.start用法及代码示例
- Python re.Match.__getitem__用法及代码示例
- Python Regex re.MatchObject.groups()用法及代码示例
- Python Regex re.MatchObject.groupdict()用法及代码示例
- Python re.compile用法及代码示例
- Python re.fullmatch()用法及代码示例
- Python re.split用法及代码示例
- Python re.Pattern.match用法及代码示例
- Python re.Pattern.search用法及代码示例
- Python re.escape用法及代码示例
- Python re.search() vs re.match()用法及代码示例
- Python re.sub用法及代码示例
- Python re.findall用法及代码示例
- Python re.Pattern.fullmatch用法及代码示例
- Python re.X用法及代码示例
- Python Numpy recarray.tostring()用法及代码示例
- Python reduce()用法及代码示例
- Python response.status_code用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 re.Match.groupdict。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。