gpt4 book ai didi

python - 如何通过Python运行unix命令来就地编辑文件

转载 作者:太空宇宙 更新时间:2023-11-03 18:37:19 25 4
gpt4 key购买 nike

我必须打开一个 xml 文件,修剪其中的空格(换行符除外),删除与正则表达式匹配的所有行,然后删除与另一个正则表达式匹配的所有行。现在这使用了 3 个独立的临时文件,我知道这是不必要的。

# Trim whitespace from xml
f2 = open(fname + '.xml','r')
f3 = open(fname + 'temp.xml', 'w')
subprocess.call(["tr", "-d", "'\t\r\f'"], stdin=f2, stdout=f3)
f2.flush()
f3.flush()

# Remove the page numbers from the file
f4 = open(fname + 'temp2.xml', 'w')
subprocess.call(["sed",
"/<attr key=\"phc.line_number\"><integer>[0-9]*<\/integer><\/attr>/d",
fname + 'temp.xml'], stdout=f4)
f4.flush()

# Remove references to filename from the file
--not implemented--

有没有一种方法可以让我用一个文件完成所有这些工作?

最佳答案

$ sed -i -e 's/[ \r\t\f]//g' -e /pattern1/d -e /pattern2/d x.xml

注意多个 -e 参数。 -i 将结果保留在 x.xml 中。

关于python - 如何通过Python运行unix命令来就地编辑文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21321193/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com