① python中操作字元串之replace()方法,值得學習!
replace()方法返回當前old換成new,可選擇的替代限制到最大數量的字元串的副本。
語法
以下是replace()方法的語法:
1
str.replace(old, new[, max])
參數
old -- 這是明臘要進行更換的舊子串。
new -- 這是新卜敗的子串,將取代舊的子字元串。
max -- 如果這個可選參數max值給出,僅第一計數出現被替換。
返回值
此方法返回字元串的拷貝與舊子串出現的所有被新的所取代。如果可選參型槐顫數最大值給定,只有第一個計數發生替換。
例子
下面的示例演示了replace()方法的使用。
?
1
2
3
4
5
#!/usr/bin/python
str = this is string example....wow!!! this is really string;
print str.replace(is, was);
print str.replace(is, was, 3);
當我們運行上面的程序,它會產生以下結果:
?
1
2
thwas was string example....wow!!! thwas was really string
thwas was string example....wow!!! thwas is really string