匹配这个正则表达式的过程是什么?我不明白为什么显式组是“c”。这是一段代码取自 Python Re Module Doc。
>>> m = re.match("([abc])+", "abc")
>>> m.group()
'abc'
>>> m.groups()
('c',)
另外,关于:
>>> m = re.match("([abc]+)", "abc")
>>> m.group()
'abc'
>>> m.groups()
('abc',)
和:
>>> m = re.match("([abc])", "abc")
>>> m.group()
'a'
>>> m.groups()
('a',)
谢谢。