在Python中进行匹配与搜索

Python根据正则表达式提供了两种不同的基本操作:匹配仅在字符串的开头检查匹配,而搜索在字符串中的任意位置检查匹配(这是Perl的默认设置)。

示例

#!/usr/bin/python
import re
line = "Cats are smarter than dogs";
matchObj = re.match( r'dogs', line, re.M|re.I)
if matchObj:
   print "match --> matchObj.group() : ", matchObj.group()
else:
   print "No match!!"
searchObj = re.search( r'dogs', line, re.M|re.I)
if searchObj:
   print "search --> searchObj.group() : ", searchObj.group()
else:
   print "Nothing found!!"

输出结果

执行以上代码后,将产生以下结果-

No match!!
search --> searchObj.group() : dogs