Python - 单词替换



在文本处理中,替换整个字符串或字符串的一部分是一个非常常见的需求。replace() 方法返回一个字符串的副本,其中旧字符串的所有出现都被替换为新字符串,可以选择限制替换次数为 max。

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

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

参数

  • old - 要替换的旧子字符串。

  • new - 将替换旧子字符串的新子字符串。

  • max - 如果提供了可选参数 max,则仅替换前 count 次出现。

此方法返回一个字符串的副本,其中所有旧子字符串的出现都被替换为新子字符串。如果提供了可选参数 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","Tutorialspoint has the best tutorials for learning.")
print (Replacedline)

当我们运行以上程序时,我们得到以下输出:

Tutorialspoint has the best Tutorials for learning.
广告