你可以使用Python中的replace()
方法來替換文件中的文本。以下是一個示例代碼,演示如何打開一個文件,讀取其中的內容并使用replace()
方法來替換指定的文本,然后將修改后的內容寫回到文件中:
# 打開文件,讀取內容
file_path = 'example.txt'
with open(file_path, 'r') as file:
content = file.read()
# 使用replace()方法替換文本
old_text = 'apple'
new_text = 'orange'
new_content = content.replace(old_text, new_text)
# 將修改后的內容寫回到文件中
with open(file_path, 'w') as file:
file.write(new_content)
在這個示例中,我們首先打開一個文件example.txt
并讀取其中的內容。然后使用replace()
方法將文本中的apple
替換為orange
。最后將修改后的內容寫回到文件中。你可以根據自己的需求修改old_text
和new_text
來替換不同的文本。