Python - 单词替换
-
简述
替换整个字符串或部分字符串是文本处理中非常常见的需求。这replace()方法返回字符串的副本,其中旧的出现已被替换为新的,可选地将替换次数限制为最大值。以下是语法replace()方法 -str.replace(old, new[, max])
-
参数
-
old− 这是要替换的旧子字符串。
-
new− 这是新的子串,它将替换旧的子串。
-
max- 如果给定此可选参数 max,则仅替换第一次出现的计数。
此方法返回字符串的副本,其中所有出现的子字符串 old 都替换为 new。如果给出了可选参数 max,则仅替换第一个 count 出现。 -
-
例子
以下示例显示了 replace() 方法的用法。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
-
更换忽略案例
import re sourceline = re.compile("Tutor", re.IGNORECASE) Replacedline = sourceline.sub("Tutor","Jc2182 has the best tutorials for learning.") print (Replacedline)
当我们运行上述程序时,我们得到以下输出 -Jc2182 has the best Tutorials for learning.