string.replace
功能说明
描述
把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。
函数原型
string.replace(old,new,max=-1)
参数
名称 | 类型 | 描述 |
---|---|---|
old | 字符型 | 待替换的字符串 |
new | 整型 | 新字符串 |
max | 整型 | 可选, 默认为-1表示替换全部 |
返回值
类型 | 描述 |
---|---|
字符型 | 执行成功返回替换后的字符串 |
备注
- 无
示例
def test():
val="this is Hellen"
# 替换全部的is
ret=val.replace("is","was")
print(ret)
# 替换1次的is
ret=val.replace("is","was",1)
print(ret)
演示示例
- 暂无
安装包下载
- 暂无
相关视频
- 暂无