标签:一个 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
待续...
标签:一个 def none 字符 python ret return span str
原文地址:https://www.cnblogs.com/josephchuh/p/9238880.html