• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Python小程序之sed命令替换

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

需求:

  编写sed命令脚本

 

代码如下

 1 # Author:Lee Sir
 2 
 3 import sys,os
 4 
 5 des_file = r'E:\StartPython\day3\test.txt'
 6 des_file1 = r'E:\StartPython\day3\test1.txt'
 7 
 8 parameter = ['0','Somehow','123',des_file]
 9 
10 def usage(parameter):
11     if len(parameter) == 4:
12         if isinstance(parameter[1],str) and isinstance(parameter[2],str):
13             old_str = parameter[1]
14             new_str = parameter[2]
15             if os.path.exists(parameter[3]):
16                 des_file = parameter[3]
17                 return True, old_str, new_str, des_file
18     return False
19 
20 def check_string_exist(old,file):
21     with open(file,encoding='utf-8') as fd:
22         for line in fd:
23             if old not in line:
24                 return False
25             else:
26                 return True
27 
28 def replace(old,new,file):
29     with open(file,'r+',encoding='utf-8') as fd,open(des_file1,'w+',encoding='utf-8') as fd1:
30         for line in fd:
31             if old in line:
32                 new_line = line.replace(old,new)
33             else:
34                 new_line = line
35             print(new_line)
36             fd1.write(new_line)
37 
38 def main():
39     result = usage(parameter)
40     if result:
41         if check_string_exist(result[1],result[3]):
42             replace(result[1],result[2],result[3])
43         else:
44             print('the %s is not found in %s ' % (result[1],result[3]))
45     else:
46         exit('USAGE: %s  old_str  new_str  des_file' % sys.argv[0])
47 
48 if __name__ == '__main__':
49     main()

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
微信小程序如何性能测试?发布时间:2022-07-18
下一篇:
【微信小程序】loading标签使用,可自定义时长发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap