位置:首頁 > 腳本語言 > Python教學 > Python replace()方法

Python replace()方法

replace()方法返回當前old換成new,可選擇的替代限製到最大數量的字符串的副本。

語法

以下是replace()方法的語法:

str.replace(old, new[, max])

參數

  • old -- 這是要進行更換的舊子串。

  • new -- 這是新的子串,將取代舊的子字符串。

  • max -- 如果這個可選參數max值給出,僅第一計數出現被替換。

返回值

此方法返回字符串的拷貝與舊子串出現的所有被新的所取代。如果可選參數最大值給定,隻有第一個計數發生替換。

例子

下麵的示例演示了replace()方法的使用。

#!/usr/bin/python

str = "this is string example....wow!!! this is really string";
print str.replace("is", "was");
print str.replace("is", "was", 3);

當我們運行上麵的程序,它會產生以下結果:

thwas was string example....wow!!! thwas was really string
thwas was string example....wow!!! thwas is really string