繁体   English   中英

Python:在一行中搜索STR1并将整行替换为STR2

[英]Python: search for a STR1 in a line and replace the whole line with STR2

我有一个文件,我需要在其中搜索STR1并替换包含STR2的整个行。 例如, file1包含以下数据

Name: John
Height: 6.0
Weight: 190
Eyes: Blue

我需要在上面的文件中搜索Name ,然后将整个行替换为Name: Robert 我可以轻松地完成此操作

sed -i 's/.*Name.*/Name:Robert/' file1

但是如何在python中获得相同的结果。 例如,我可以使用fileinput将一个字符串替换为另一个字符串,如下所示

#! /usr/bin/python
import fileinput
for line in fileinput.input("file1", inplace=True):
    # inside this loop the STDOUT will be redirected to the file
    # the comma after each print statement is needed to avoid double line breaks
    print line.replace("Name: John", "Name: Robert"),

如何修改以上代码以替换整行,即使使用搜索条件,使用'*'替换文件中的所有行( if "Name" in line

您可以使用string.find()确定一个字符串是否在另一个字符串中。 相关的Python文档

#! /usr/bin/python
import fileinput
for line in fileinput.input("file1", inplace=True):
    if line.find("Name:") >= 0:
        print "Name: Robert"
    else:
        print line[:-1]

应该正是您想要的。

def replace_basic(key_to_replace, new_value, file):
    f = open(file, 'rb').readlines()
    with open(file, 'wb') as out:
        for line in f:
            if key_to_replace in line:
                out.write(new_value+'/n') #asuming that your format never changes then uncomment the next line and comment out this one.
                #out.write('{}: {}'.format(key_to_replace, new_value))
                continue
            out.write(line)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM