Python ,正则表达式问题

#!/usr/bin/python
import re
line = "Cats are smarter than dogs"
matchObj = re.match( r'(.*) are (.*?) .*', line, re.M|re.I)
if matchObj:
print "matchObj.group() : ", matchObj.group()
print "matchObj.group(1) : ", matchObj.group(1)
print "matchObj.group(2) : ", matchObj.group(2)
else:
print "No match!!"

以上实例执行结果如下:
matchObj.group() : Cats are smarter than dogs
matchObj.group(1) : Cats
matchObj.group(2) : smarter

请问, r'(.*) are (.*?) .*',这个是匹配什么东西,是如何匹配的?好像很复杂的样子,另外matchObj.group(1)可以有输出,填3的时候就出错了?

元芳怎么了
浏览 838回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python