金狮镖局 Design By www.egabc.com
学习python爬虫时遇到了一个问题,书上有示例如下:
import re line='Cats are smarter than dogs' matchObj=re.match(r'(.*)are(.*"htmlcode">matchObj=re.match(r'(.*)are(.*"htmlcode">import re line='Cats are smarter than dogs' matchObj=re.match(r'(.*)are(.*"matchObj.group():",matchObj.group()) print("matchObj.group(1):", matchObj.group(1)) print("matchObj.group(2):", matchObj.group(2)) print("matchObj.group(3):", matchObj.group(3)) else: print('No match!\n')得到的结果是:
matchObj.group(): Cats are smarter than dogs
matchObj.group(1): Cats
matchObj.group(2):
matchObj.group(3): smarter than dogs
可见第二个括号里的内容被默认为空了,然后删去那个?,可以看到结果变成:
matchObj.group(): Cats are smarter than dogs
matchObj.group(1): Cats
matchObj.group(2): smarter than dogs
matchObj.group(3):
那么这是否就意味着?的默认值很可能是0次,那?这个符号到底有什么用呢
仔细想来这个说法并不是很严谨。尝试使用单独的."htmlcode">
import re line='Cats are smarter than dogs' matchObj=re.match(r'(.*) are(.*)"matchObj.group():",matchObj.group()) print("matchObj.group(1):", matchObj.group(1)) print("matchObj.group(2):", matchObj.group(2))也能在组别2中正常提取到are之后的字符内容,但稍微改动一下将?放到第二个括号内,
就什么也提取不到,同时导致group(0)中匹配的字符到Cats are就截止了(也就是第二个括号匹配失败)。
令人感到奇怪的是,如果将上面的代码改成
import re line='Cats are smarter than dogs' matchObj=re.match(r'(.*) are (.*)+',line) if matchObj: print("matchObj.group():",matchObj.group()) print("matchObj.group(1):", matchObj.group(1)) print("matchObj.group(2):", matchObj.group(2))也就是仅仅将?改为+,虽然能成功匹配整个line但group(2)中没有内容,
如果把+放到第二个括号中就会产生报错,匹配失败。
那么是否可以认为.*"htmlcode">
import re line='Cats are smarter than dogs' matchObj=re.match(r'(.*) are (.*r).*',line) if matchObj: print("matchObj.group():",matchObj.group()) print("matchObj.group(1):", matchObj.group(1)) print("matchObj.group(2):", matchObj.group(2)) #print("matchObj.group(3):", matchObj.group(3)) else: print('No match!\n')为了泛用性尝试了一下把r改成‘ '但是得到的结果是‘smarter than '。于是尝试把.换成表示任意字母的
[a-zA-Z],成功提取出了单个smarter,代码如下:
import re line='Cats are smarter than dogs' matchObj=re.match(r'(.*) are ([a-zA-Z]* ).*',line) if matchObj: print("matchObj.group():",matchObj.group()) print("matchObj.group(1):", matchObj.group(1)) print("matchObj.group(2):", matchObj.group(2)) #print("matchObj.group(3):", matchObj.group(3)) else: print('No match!\n')
金狮镖局 Design By www.egabc.com
金狮镖局
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
金狮镖局 Design By www.egabc.com
暂无python re.match()用法相关示例的评论...
更新日志
2024年11月15日
2024年11月15日
- 孙露《一抹伤HQ》头版限量[WAV+CUE][1G]
- 黄安.1989-一切从头(TP版)【天际唱片】【FLAC分轨】
- 群星.1994-浓情蜜意情歌精丫华纳】【WAV+CUE】
- 邓丽君.1983-淡淡幽情(2022环球MQA-UHQCD限量版)【环球】【WAV+CUE】
- 试音天碟《专业测试第一天碟》经典天碟精选[WAV分轨][1G]
- 试音典范 《情惹发烧情HQCD》人声发烧极品 [WAV+CUE][1G]
- 世界顶级汽车音响试音王《幸福在路上》[低速原抓WAV+CUE][1.1G]
- 老头杯第二届什么时候开始 英雄联盟第二届老头杯开赛时间介绍
- 老头杯第二届什么时候结束 英雄联盟第二届老头杯结束时间介绍
- 老头杯第二届规则是什么 英雄联盟老头杯第二届规则介绍
- 王崴-爵士听堂.蓝色波萨(HQCD)[WAV+CUE]
- 群星《欧美动听情歌·柔情第5季》2CD【DTS-WAV分轨】
- [极品珍藏]德意志进行曲集卡拉扬SACD[WAV+CUE]
- 前暴雪制作人呼吁反击DEI 玩家:夺回文化!
- 腾讯证实子公司Sharkmob大规模裁员:整个市场很低迷