Python/ref string replace

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python字符串replace()方法

❮字符串方法

替换“香蕉”一词:

    txt = "I like bananas"

x = txt.replace("bananas", "apples")

print(x)

定义和用法

The replace() 方法用另一个指定短语替换一个指定短语。

注意: All 如果未指定其他内容,则将替换出现的指定短语。


句法

string.replace(oldvalue, newvalue, count)
  

参数值

参数 描述
oldvalue 需要。要搜索的字符串
newvalue 需要。用旧值替换旧值的字符串
count 可选的。一个数字,指定要替换的旧值出现次数。默认为所有事件

更多例子

替换所有出现的单词“一个”:

    txt = "one one was a race horse, two two was one too."

x = 
    txt.replace("one", "three")

print(x)

替换单词“ one”的两个第一次出现:

    txt = "one one was a race horse, two two was one too."

x = 
    txt.replace("one", "three", 2)

print(x)

❮字符串方法