在Python中,搜索并替换文件中的一行可以使用以下方法:
以下是一个示例代码:
import re
def replace_line(file_path, search_pattern, replace_string):
with open(file_path, 'r') as file:
lines = file.readlines()
for i, line in enumerate(lines):
if re.search(search_pattern, line):
lines[i] = re.sub(search_pattern, replace_string, line)
break
with open(file_path, 'w') as file:
file.writelines(lines)
# 使用示例
file_path = 'example.txt'
search_pattern = 'old_text'
replace_string = 'new_text'
replace_line(file_path, search_pattern, replace_string)
在这个示例中,我们定义了一个名为replace_line
的函数,它接受三个参数:文件路径、搜索模式和替换字符串。函数首先读取文件内容,然后使用正则表达式搜索目标行并替换。最后,将修改后的内容写回文件。
在使用示例中,我们将文件路径设置为example.txt
,搜索模式设置为old_text
,替换字符串设置为new_text
。这个函数将在文件中搜索包含old_text
的行,并将其替换为new_text
。
领取专属 10元无门槛券
手把手带您无忧上云