正则表达式查找文本文件中出现的所有字符串。如何?

ASP*_*iRE 3 python regex csv io python-3.x

步骤 1:生成 25 位十进制数字的 Pi 并将其保存到 output.txt 文件中。

from decimal import *

#Sets decimal to 25 digits of precision
getcontext().prec = 25

def factorial(n):
    if n<1:
        return 1
    else:
        return n * factorial(n-1)

def chudnovskyBig(): #http://en.wikipedia.org/wiki/Chudnovsky_algorithm
    n = 1
    pi = Decimal(0)
    k = 0
    while k < n:
        pi += (Decimal(-1)**k)*(Decimal(factorial(6*k))/((factorial(k)**3)*(factorial(3*k)))* (13591409+545140134*k)/(640320**(3*k)))
        k += 1
    pi = pi * Decimal(10005).sqrt()/4270934400
    pi = pi**(-1)

    file = open('output.txt', 'w', newline = '')
    file.write(str(Decimal(pi)))
    file.close()
    print("Done.")

    #return pi

chudnovskyBig()
Run Code Online (Sandbox Code Playgroud)

步骤 2:我打开此文件并使用正则表达式查找特定字符串的所有匹配项。

import re

file = open('output.txt', 'r')

lines = file.read()

regex = input("Enter Combination: ")
match = re.findall(regex, lines)
print('Matches found: ' + str(len(match)))
file.close()
input("Press Enter to Exit.")
Run Code Online (Sandbox Code Playgroud)

如何更改我的查找所有匹配代码以查看包含许多这些组合(每行一个)而不是一次仅一个的 csv 文件?

csv 文件格式:

1\t2\t3\t4\t5\t6\r\n ..我认为?

1

use*_*431 5

以下是如何使用 re.findall 的示例

import re
pattern = '[A-Za-z0-9-]+' # pattern for matching all ASCII characters, digits, and repetitions of
                            # them (+)
lines = "property"           # adding input string, raw_input("Enter Combination: ")
ls = re.findall(pattern,lines)
print ls
Run Code Online (Sandbox Code Playgroud)