美文网首页
Python3 替换文件中的字符串

Python3 替换文件中的字符串

作者: ElonYanJ | 来源:发表于2018-11-19 11:46 被阅读0次

def repalcebytext(address, ori_str, target_str):
    all_data = ''
    with open(address, 'r+', encoding="UTF-8") as f:
        for line in f.readlines():
            if line.find(ori_str) != -1:
                line = target_str

            all_data += line
        f.close()

    with open(address, 'r+', encoding="UTF-8") as f:
        f.truncate()
        f.write(all_data)
        f.close()

相关文章

网友评论

      本文标题:Python3 替换文件中的字符串

      本文链接:https://www.haomeiwen.com/subject/oomofqtx.html