當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python re.Match.__getitem__用法及代碼示例


用法:

Match.__getitem__(g)

這與 m.group(g) 相同。這允許從匹配中更輕鬆地訪問單個組:

>>> m = re.match(r"(\w+) (\w+)", "Isaac Newton, physicist")
>>> m[0]       # The entire match
'Isaac Newton'
>>> m[1]       # The first parenthesized subgroup.
'Isaac'
>>> m[2]       # The second parenthesized subgroup.
'Newton'

3.6 版中的新函數。

相關用法


注:本文由純淨天空篩選整理自python.org大神的英文原創作品 re.Match.__getitem__。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。