Python 文字替换

Python 文字替换

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

下面是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.

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程