- Python - 文本处理
- Python - 文本处理简介
- Python - 文本处理环境
- Python - 字符串不变性
- Python - 对行排序
- Python - 段落重新格式化
- Python - 统计段落中的标记
- Python - 二进制 ASCII 转换
- Python - 字符串作为文件
- Python - 反向读取文件
- Python - 过滤重复单词
- Python - 从文本中提取电子邮件
- Python - 从文本中提取 URL
- Python - 美化打印
- Python - 文本处理状态机
- Python - 大写和翻译
- Python - 分词
- Python - 删除停用词
- Python - 同义词和反义词
- Python - 文本翻译
- Python - 单词替换
- Python - 拼写检查
- Python - WordNet 接口
- Python - 语料库访问
- Python - 词性标注
- Python - 组块和组块间隙
- Python - 组块分类
- Python - 文本分类
- Python - 二元语法
- Python - 处理 PDF
- Python - 处理 Word 文档
- Python - 读取 RSS 订阅
- Python - 情感分析
- Python - 搜索和匹配
- Python - 文本整理
- Python - 文本换行
- Python - 频率分布
- Python - 文本摘要
- Python - 词干提取算法
- Python - 受约束搜索
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.
广告