假设我在文件 testFile 中有以下几行:
Test Line in File
Test Line in File
Test Line in File
Test Line in File Line
Test Line in File Line
是否可以做一个 re.findall() 让我每行找到一个“模式”实例?例如,如果我执行 len(re.findall("Line", testfile, 0)),程序将返回 7。我希望它返回 5。我正在考虑类似“Line.*\n”之类的东西,但是这仍然会返回 7。为了澄清,我想避免使用:
count = 0
with open(testFile, "r") as file:
for line in file:
re.match(pattern, testFile, 0)
#etc
任何帮助表示赞赏。