python批量替换txt文档中指定的字符串
使用Python来读取txt文件,并替换其中的字符串。下面是一个简单的示例代码,演示如何实现这个替换:
# 打开txt文件
with open('your_file.txt', 'r',encoding='utf-8') as file:
# 读取文件内容
content = file.read()
# 将<br />替换为</p>
content = content.replace('<br />', '</p>')
# 写回文件
with open('your_file.txt', 'w',encoding='utf-8') as file:
file.write(content)
请将 your_file.txt 替换为你实际的文件路径。这段代码将读取文件内容,将 <br /> 替换为 </p>,然后将替换后的内容写回到文件中。