Python Text Processing 简明教程
Python - Word Replacement
在文本处理中,经常需要替换整个字符串或字符串的一部分。 replace() 方法返回一个字符串的副本,其中旧的出现已被新的替换,或者限制替换次数为 max。
以下是 replace() 方法的语法 −
str.replace(old, new[, max])
Parameters
-
old − 这是要替换的旧子字符串。
-
new − 这是新的子字符串,它将替换旧的子字符串。
-
max − 如果给出此可选参数 max,则只替换前 count 个出现。
此方法返回一个字符串的副本,其中 old 的所有出现都被 new 替换。如果给出可选参数 max,则只替换前 count 个出现。
Example
以下示例显示了 replace() 方法的用法。
str = "this is string example....wow!!! this is really string"
print (str.replace("is", "was"))
print (str.replace("is", "was", 3))