- 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 ()方法返回字符串的副本,其中出现的旧值已被新值替换,可以选择将替换次数限制为最大。
以下是Replace()方法的语法-
str.replace(old, new[, max])
参数
old - 这是要替换的旧子字符串。
new - 这是新的子字符串,它将替换旧的子字符串。
max - 如果给出了此可选参数 max,则仅替换第一个出现的计数。
此方法返回字符串的副本,其中所有出现的子字符串 old 都被 new 替换。如果给出了可选参数 max,则仅替换第一个出现的计数。
例子
以下示例显示了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.