- 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 - 文本修改
一般来说,修改意味着通过改变任何杂乱的东西来清理它们。在我们的例子中,我们将看到如何转换文本以获得一些结果,从而对数据进行一些所需的更改。在简单的层面上,它只是关于转换我们正在处理的文本。
例子
在下面的示例中,我们计划打乱并重新排列句子中除第一个和最后一个字母之外的所有字母,以获得可能的替代单词,这些单词可能在人类书写过程中生成为拼写错误的单词。这种重新安排有助于我们
import random import re def replace(t): inner_word = list(t.group(2)) random.shuffle(inner_word) return t.group(1) + "".join(inner_word) + t.group(3) text = "Hello, You should reach the finish line." print re.sub(r"(\w)(\w+)(\w)", replace, text) print re.sub(r"(\w)(\w+)(\w)", replace, text)
当我们运行上面的程序时,我们得到以下输出 -
Hlleo, You slouhd raech the fsiinh lnie. Hlleo, You suolhd raceh the fniish line.
在这里您可以看到除了第一个和最后一个字母之外的单词是如何混乱的。通过对错误拼写采取统计方法,我们可以确定哪些是常见拼写错误的单词,并为它们提供正确的拼写。