Python Text Processing 简明教程

Python - Word Replacement

在文本处理中,经常需要替换整个字符串或字符串的一部分。 replace() 方法返回一个字符串的副本,其中旧的出现已被新的替换,或者限制替换次数为 max。

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

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

Parameters

  1. old − 这是要替换的旧子字符串。

  2. new − 这是新的子字符串,它将替换旧的子字符串。

  3. 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))

Result

当运行上述程序时,将生成以下结果 −

thwas was string example....wow!!! thwas was really string
thwas was string example....wow!!! thwas is really string

Replacement Ignoring Case

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.