在 python 中,我可以像这样使用正则表达式:
prog = re.compile(pattern)
result = prog.match(string)
我可以 result.groups(0), result.groups(0), ... 等等。
如何找出结果中有多少组?我试过'len(result.groups)',但我得到:
TypeError: object of type 'builtin_function_or_method' has no len()
在 python 中,我可以像这样使用正则表达式:
prog = re.compile(pattern)
result = prog.match(string)
我可以 result.groups(0), result.groups(0), ... 等等。
如何找出结果中有多少组?我试过'len(result.groups)',但我得到:
TypeError: object of type 'builtin_function_or_method' has no len()