码迷,mamicode.com
首页 > 其他好文 > 详细

re match findall research

时间:2017-07-14 16:43:02      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:match search findall

re.match

import res= ‘23432werwre2342werwrew‘ p = r‘(\d*)([a-zA-Z]*)‘m = re.match(p,s)print(m.group()) #返回所有匹配内容 23432werwreprint(m.group(0)) #和group()一样 23432werwreprint(m.group(1)) #返回字串第一个 23432,没有字串则报错print(m.group(2)) #返回字串第二个 werwreprint(m.groups()) #返回所有字串组成的元组 (‘23432‘, ‘werwre‘),如果没有字串则为空元组


本文出自 “12208412” 博客,请务必保留此出处http://12218412.blog.51cto.com/12208412/1947405

re match findall research

标签:match search findall

原文地址:http://12218412.blog.51cto.com/12208412/1947405

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