We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
例如正则化这个教程里, `import re
content = 'Xiaoshuaib has 100 bananas' res = re.match('^Xi.*(d+)s.*s$',content) print(res.group(1))` 这里运行会报错,提示没有找到任何匹配字符。