zoukankan      html  css  js  c++  java
  • python实现指定文档中指定字符串的替换-可循环替换多个字符串

    随便写的一个简单小脚本,对字符串的完整匹配替换,后续也许有更多补充,随缘吧。。。:

    #!/usr/bin/env python3
    # -*-coding: utf-8 -*-
    # @Time:2019/12/10 14:22
    # @User: wsn
    # @Author: WSN
    # @File: str_replace.py
    import re,sys,os
    # 输入需要替换的文档路径及名称
    dirfile=input('请输入您需要替换字符的文档绝对路径:')
    with open(dirfile,'r') as tfile:
        openfile=tfile.read()
    # 输入要替换的字符:
    while True:
        kw = input('是否需要替换字符:')  #1:替换 0:退出
        tw = kw.isdigit()
        if tw:
            if int(kw):
                oldstr=input('输入原字符:')
                nu=len(re.findall(oldstr,openfile))
                newstr=input('替换字符为:')
                print('原文档中共有%d个%s被替换成%s' % (nu, oldstr,newstr))
                openfile=re.sub(oldstr,newstr,openfile)
            else:
                print(openfile)
                newfile = list(os.path.split(dirfile))[0] + '/new-' + list(os.path.split(dirfile))[1]
                with open(newfile, 'w') as new:
                    new.write(openfile)
                sys.exit()
        else:
            print('请输入正确指令!')
    
    
  • 相关阅读:
    Alpha版(内部测试版)发布
    冲刺2-3
    冲刺2-2
    冲刺2-1
    团队绩效评价
    改进方案
    意见汇总
    27组评价
    冲刺10
    SOA
  • 原文地址:https://www.cnblogs.com/wsn-only/p/12035039.html
Copyright © 2011-2022 走看看