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

Python常用正则操作

时间:2018-06-28 16:01:11      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:一个   def   none   字符   python   ret   return   span   str   

判断字符串是否匹配

import re
def is_matched(string):
    return True if re.match(r‘your regex‘,string) else False

如果匹配, re.match()会返回一个match对象

<_sre.SRE_Match object; span=(0, 0), match=‘‘>

否则返回None

待续...

Python常用正则操作

标签:一个   def   none   字符   python   ret   return   span   str   

原文地址:https://www.cnblogs.com/josephchuh/p/9238880.html

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