标签: python regex python-3.x match
我需要使用正则表达式过滤字符串末尾包含多个制表符的一些行。 为此,我编写了以下代码:
import re s = 'text:\t\t\t\t\t' preg = re.compile(r':\s*$') print(preg.match(s))
打印None表示未找到匹配项。为了进一步调查,我跳到regex101.com以便更舒适地测试正则表达式,这与Python相比,根据需要返回匹配。
None
这里的问题在哪里?我究竟做错了什么?