一支向阳花 2021-05-12 17:19 采纳率: 52.6%
浏览 49
已采纳

python 多个字符不区分大小写如何进行替换

c = 'obs.oBs_222.xml  obs_123'

如何将c里面的obs.oBs和obs替换为OBPS.ODS_CBUS,最后输出OBPS.ODS_CBUS_222.xml OBPS.ODS_CBUS_123

也就是如何将字符串中的多个字符不区分大小写进行替换?

 

  • 写回答

2条回答 默认 最新

  • iMingzhen 2021-05-12 17:28
    关注

    还是用正则

    示例代码

    # coding=utf8
    # the above tag defines encoding for this document and is for Python 2.x compatibility
    
    import re
    
    regex = r"obs.obs|obs"
    
    test_str = "obs.oBs_222.xml  obs_123"
    
    subst = "OBPS.ODS_CBUS"
    
    # You can manually specify the number of replacements by changing the 4th argument
    result = re.sub(regex, subst, test_str, 0, re.IGNORECASE)
    
    if result:
        print (result)
    
    # Note: for Python 2.7 compatibility, use ur"" to prefix the regex and u"" to prefix the test string and substitution.
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 我这个代码哪里有问题 acm 平台上显示错误 90%,我自己运行好像没什么问题
  • ¥50 C#编程中使用printDocument类实现文字排版打印问题
  • ¥15 找会编程的帅哥美女 可以用MATLAB里面的simulink编程,用Keil5编也可以。
  • ¥15 已知隐函数其中一个变量τ的具体值,求另一个变量
  • ¥15 r语言Hurst指数
  • ¥15 Acrn IVSHMEM doorbell问题
  • ¥15 yolov5中的val测试集训练时数量变小问题
  • ¥15 MPLS/VPN实验中MPLS的配置问题
  • ¥15 materialstudio氢键计算问题
  • ¥15 echarts图表制作