- 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 feed
- Python - 情感分析
- Python - 搜索和匹配
- Python - 文本词法转换
- Python - 文本换行
- Python - 频率分布
- Python - 文本摘要
- Python - 词干算法
- Python - 受约束搜索
Python - 受约束搜索
搜索结果出来后,我们经常需要对现有搜索结果的某一部分进行更深层次的搜索。例如,在给定的文本主体中,我们的目标是获取网址,并提取网址的不同部分(如协议、域名等)。在这种情况下,我们需要借助分组函数,该函数可根据分配的正则表达式将搜索结果划分为不同的组。我们通过使用圆括号将可搜索部分与需要匹配的固定单词分离开来,创建此类组表达式。
import re text = "The web address is https://tutorialspoint.com" # Taking "://" and "." to separate the groups result = re.search('([\w.-]+)://([\w.-]+)\.([\w.-]+)', text) if result : print "The main web Address: ",result.group() print "The protocol: ",result.group(1) print "The doman name: ",result.group(2) print "The TLD: ",result.group(3)
当我们运行上述程序时,会得到以下输出:
The main web Address: https://tutorialspoint.com The protocol: https The doman name: www.tutorialspoint The TLD: com
广告