用python实现多文件多文本替换功能

用python实现多文件多文本替换功能

今天修改单位项目代码时由于改变了一个数据结构名称,结果有几十个文件都要修改,一个个改实在太麻烦,又没有搜到比较靠谱的工具软件,于是干脆用python手撸了一个小工具,发现python在这方面确实方便,代码也就几十行,这里记录一下,需要的朋友请拿走。

有个需要注意的地方,就是文件的编码方式,要替换成您文件的编码方式,我这里是utf-8,windows文件有可能是gbk。

python 复制代码
import os
import fileinput

# 定义一个函数,用于替换文件中的字符串
def replace_in_file(file_path, old_str, new_str):
    for line in fileinput.input(file_path, inplace=True, encoding='utf-8'):
        print(line.replace(old_str, new_str), end='')
    fileinput.close()

if __name__ == '__main__':
    # 设置要替换的目录路径
    directory = 'D"\\dir\\subdir'

    # 设置要替换的字符串字典(map)
    placeDic = {'oldstring1:newstring1', 'oldstring2:newstring2', 'oldstring3:newstring3'}
                
    old_strings = placeDic.keys()
    # 遍历目录下的所有文件
    for filename in os.listdir(directory):
        # 只处理需要的文件
        if filename.endswith('.cpp'):
            file_path = os.path.join(directory, filename)
            
            for old_string in old_strings:
                new_string = placeDic.get(old_string, '');
                replace_in_file(file_path, old_string, new_string);
相关推荐
爱数学的程序猿4 分钟前
Python入门:6.深入解析Python中的序列
android·服务器·python
xianwu5436 分钟前
反向代理模块。开发
linux·开发语言·网络·c++·git
xiaocaibao77711 分钟前
Java语言的网络编程
开发语言·后端·golang
木向29 分钟前
leetcode22:括号问题
开发语言·c++·leetcode
comli_cn31 分钟前
使用清华源安装python包
开发语言·python
梦境之冢35 分钟前
axios 常见的content-type、responseType有哪些?
前端·javascript·http
筑基.37 分钟前
basic_ios及其衍生库(附 GCC libstdc++源代码)
开发语言·c++
racerun38 分钟前
vue VueResource & axios
前端·javascript·vue.js
赵谨言41 分钟前
基于python 微信小程序的医院就诊小程序
经验分享·python·毕业设计
雨颜纸伞(hzs)1 小时前
C语言介绍
c语言·开发语言·软件工程