• 批量替换文本中的多组字符串


    【问题】

    hi friends, I have the following demand and I want to know if you have any suggestions for me:
    I want to REPLACE certain strings from one text file with corresponding strings stored in another text file (one to one matching), and save to a new text file (override the original file is also acceptable).
    I want to know what is the best programming language to handle this task? all opinions are welcome and appreciated.
    If I only had limited knowledge of C programming, html, php, would you list Python as a recommendation for me to handle this problem?
    Thank you all.

    【回答】

           要想批量替换多组字符串,python用两层循环可以实现,对于初学者来说代码比较难写。可以考虑SPL,不需要循环就能实现,脚本如下:

    A
    1=file("e:\\condition.txt").import@t()
    2=A1.iterate(replace(~~,before,after),file("e:\\source.txt").read())
    3=file("e:\\result.txt").write(A2)

    A1:读取condition.txt文本,返回序表,其中有before列和after列

    A2:循环A1,将file("e:\\source.txt").read()字符串中的某些子串批量替换成其他字符串,待替换的子串就是before列的字符串,替换的子串为after列对应的字符串

    A3:将批量替换完的字符串结果写入result.txt文本中

           如果文件太大无法放入内存,那不论是python还是c都很难用双层循环简单实现了,代码会更加复杂。集算器提供游标读取大文件,易于实现批量替换,具体脚本如下:

    AB
    1=file("e:\\condition.txt").import@t()
    2=file("e:\\source.txt").cursor@s()
    3for A2,1000
    4=A3.(_1).concat(“\r\n”)
    5=A1.iterate(replace(~~,before,after),B4)
    6=file("e:\\result.txt").write@a(B5)

    A1:读取condition.txt文本,返回序表,其中有before列和after列

    A2:读取source.txt文本,返回游标,游标内容为单字段串序表

    A3:对A2游标循环分段读取,每次读取1000条记录

    B4:读取_1列列值,并按照换行分隔符拼成一个字符串

    B5:对A1循环,将B4字符串中的某些子串批量替换成其他字符串

    待替换的子串就是before列的字符串,替换的子串为after列对应的字符串

    B6:把每次替换完的字符串B5追加写入result.txt文本中

  • 相关阅读:
    JS里的数组
    java毕业设计基于web的学校工资管理系统Mybatis+系统+数据库+调试部署
    牛客小白月赛#56 A~F
    剑指 Offer 67. 把字符串转换成整数
    [二进制学习笔记]LibcSearcher报错Requirements for download
    轻量级RPC分布式网络通信框架设计——序列化协议Protobuf
    1、40个linux高效运维命令总结
    Sourcemap 配置详解
    ROS学习总结十七:自定义消息的使用
    什么是基于角色的访问控制 (RBAC)?示例、好处等
  • 原文地址:https://blog.csdn.net/raqsoft/article/details/126154626