我正在尝试删除我的正则表达式匹配的所有行(正则表达式只是在寻找任何包含yahoo的行)。每个匹配都在它自己的行上,因此不需要多行选项。
这就是我到目前为止......
import re
inputfile = open('C:\\temp\\Scripts\\remove.txt','w',encoding="utf8")
inputfile.write(re.sub("\[(.*?)yahoo(.*?)\n","",inputfile))
inputfile.close()
我收到以下错误:
追踪(最近一次通话): 第170行,在子 return _compile(pattern,flags).sub(repl,string,count) TypeError:期望的字符串或缓冲区
答案 0 :(得分:14)
如果要修改原始文件,请使用fileinput
模块:
import re
import fileinput
for line in fileinput.input(r'C:\temp\Scripts\remove.txt', inplace = True):
if not re.search(r'\byahoo\b',line):
print line,
答案 1 :(得分:6)
以下是@Ashwini Chaudhary's answer的Python 3变体,用于从给定pattern
中删除包含正则表达式filename
的所有行:
#!/usr/bin/env python3
"""Usage: remove-pattern <pattern> <file>"""
import fileinput
import re
import sys
def main():
pattern, filename = sys.argv[1:] # get pattern, filename from command-line
matched = re.compile(pattern).search
with fileinput.FileInput(filename, inplace=1, backup='.bak') as file:
for line in file:
if not matched(line): # save lines that do not match
print(line, end='') # this goes to filename due to inplace=1
main()
它假设为locale.getpreferredencoding(False) == input_file_encoding
,否则可能会破坏非ascii字符。
使其无论当前的语言环境是什么,或者对于具有不同编码的输入文件都是如此:
#!/usr/bin/env python3
import os
import re
import sys
from tempfile import NamedTemporaryFile
def main():
encoding = 'utf-8'
pattern, filename = sys.argv[1:]
matched = re.compile(pattern).search
with open(filename, encoding=encoding) as input_file:
with NamedTemporaryFile(mode='w', encoding=encoding,
dir=os.path.dirname(filename),
delete=False) as outfile:
for line in input_file:
if not matched(line):
print(line, end='', file=outfile)
os.replace(outfile.name, input_file.name)
main()
答案 2 :(得分:4)
您必须阅读文件,例如:
import re
inputfile = open('C:\\temp\\Scripts\\remove.txt','w',encoding="utf8")
inputfile.write(re.sub("\[(.*?)yahoo(.*?)\n","",inputfile.read()))
file.close()
outputfile.close()