码迷,mamicode.com
首页 > 编程语言 > 详细

python爬虫(二十三) 正则表达式分组

时间:2020-03-12 18:44:20      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:price   技术   mat   span   code   range   正则表达   ext   ima   

text="apple‘s price $99,orange‘s price &10"
ret=re.match(.*(\$\d+).*(\&\d+),text)
print(ret.group())

技术图片

 

 取第一组:

text="apple‘s price $99,orange‘s price &10"
ret=re.match(.*(\$\d+).*(\&\d+),text)
print(ret.group(1))

技术图片

 

 取第二组:

text="apple‘s price $99,orange‘s price &10"
ret=re.match(.*(\$\d+).*(\&\d+),text)
print(ret.group(2))

技术图片

 

 取第一组和第二组:

text="apple‘s price $99,orange‘s price &10"
ret=re.match(.*(\$\d+).*(\&\d+),text)
print(ret.group(1,2))

技术图片

 

 取所有得子分组:

text="apple‘s price $99,orange‘s price &10"
ret=re.match(.*(\$\d+).*(\&\d+),text)
print(ret.groups())

技术图片

 

python爬虫(二十三) 正则表达式分组

标签:price   技术   mat   span   code   range   正则表达   ext   ima   

原文地址:https://www.cnblogs.com/zhaoxinhui/p/12473108.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!