• Python replace()方法


    描述

    Python replace() 方法用于把字符串中指定的旧子字符串替换成指定的新子字符串,如果指定 count 可选参数则替换指定的次数,默认全部替换。

    语法

    replace() 方法语法:

    S.replace(old,new[,count=S.count(old)])

    参数

    • old -- 指定的旧子字符串
    • new -- 指定的新子字符串
    • count -- 可选参数,替换的次数,默认为指定的旧子字符串在字符串中出现的总次数。

    返回值

    返回把字符串中指定的旧子字符串替换成指定的新子字符串后生成的新字符串,如果指定 count 可选参数则替换指定的次数,默认为指定的旧子字符串在字符串中出现的总次数。

    实例

    以下实例展示了 replace() 方法的使用方法:

    #!/usr/bin/python3
    
    S = "www.w3cschool.cc"
    print ("菜鸟教程新地址:", S)
    print ("菜鸟教程新地址:", S.replace("w3cschool.cc", "runoob.com"))
    
    S = "this is string example....wow!!!"
    print (S.replace("is", "was", 3))

    以上实例输出结果如下:

    菜鸟教程新地址: www.w3cschool.cc
    菜鸟教程新地址: www.runoob.com
    thwas was string example....wow!!!
  • 相关阅读:
    c#设计模式(1)——单例模式
    Javascript变量
    悲观锁和乐观锁
    NestJs 环境 配置
    分布式查询
    Git hub 忽略 文件 、文件夹
    ES6 基础 二
    ES6 基础 一
    invalid credential, access_token is invalid or not latest hint(微信 上传图片返回 error)
    nodejs 入门一(环境及插件)
  • 原文地址:https://www.cnblogs.com/wushuaishuai/p/7687225.html
Copyright © 2020-2023  润新知