- match函数
binary_re=‘[01]*‘ pattern = re.compile(binary_re) m=re.match(binary_re,destStr) if m: print m.group(0) else: print ‘not match‘
match函数是从字符串起始位置开始进行匹配,匹配失败返回None,匹配成功的话,
m.group(0)为匹配的结果 2.search函数 binary_re=‘[01]*‘ pattern = re.compile(binary_re) m=re.search(binary_re,destStr) if m: print m.group(0) else: print ‘not match‘
search函数扫描整个字符串,并返回第一个成功的匹配
时间: 2024-12-28 15:19:35