萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> Python中操作字符串之replace()方法的使用

Python中操作字符串之replace()方法的使用

   這篇文章主要介紹了在Python中操作字符串之replace()方法的使用,是Python入門中的基礎知識,需要的朋友可以參考下

  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
copyright © 萬盛學電腦網 all rights reserved