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

python题目-----search()和match()的区别

时间:2018-09-03 02:32:38      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:string   print   扫描   import   --   none   pre   python   函数   

1. match()函数只检测re是不是在string的开始位置匹配,也就是说match()只有在0位置匹配成功的话才有返回,如果不是开始位置匹配成功的话,match()就返回none

2. search()会扫描整个string查找匹配

例如:

 

import re
print(re.match("good", "morning good").span()) #报错分会none

print(re.match("good", "good morning").span()) #成功
print(re.search("good", "morning good ok").span()) #成功

python题目-----search()和match()的区别

标签:string   print   扫描   import   --   none   pre   python   函数   

原文地址:https://www.cnblogs.com/cao123/p/9576453.html

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