python 实现类似sed命令的文件内容替换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 实现类似sed命令的文件内容替换相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python #_*_coding:utf-8 _*_ #replace()方法把字符串中的 old(旧字符串)替换成new(新字符串),如果指定第三个参数max,则替换不超过 max 次。 #语法:str.replace(old, new[, max]) import sys,os old_text, new_text, file_name = sys.argv[1], sys.argv[2], sys.argv[3] f = file(file_name,‘rb‘) new_file = file(‘%s.bak‘ % file_name,‘wb‘) for line in f.xreadlines(): new_file.write(line.replace(old_text,new_text)) f.close() new_file.close()
重要说明 sys.argv[1] #参数1 sys.argv[2] #参数2 sys.argv[3] #参数3 #replace()方法把字符串中的 old(旧字符串)替换成new(新字符串),如果指定第三个参数max,则替换不超过 max 次。 #语法:str.replace(old, new[, max]) 使用方法: python code2.py ‘原始字符串’ ‘新字符串’ 文件
本文出自 “FA&IT运维-Q群:223843163” 博客,请务必保留此出处http://freshair.blog.51cto.com/8272891/1869489
以上是关于python 实现类似sed命令的文件内容替换的主要内容,如果未能解决你的问题,请参考以下文章