目的:把数字后面不为abc的字符串找出来
如1ab符合要求,2abc不符合要求
1 str = ‘1ab‘ 2 out = re.match(r‘\d+(?!abc)‘,str) 3 4 str1 = ‘1abc‘ 5 out1 = re.match(r‘\d+(?!abc)‘,str1) 6 7 print(‘out:‘,out) 8 print(‘out1:‘,out1) 9 # 10 #out: <_sre.SRE_Match object; span=(0, 1), match=‘1‘> 11 #out1: None 12 #
如果把(?!abc)改为[^abc],效果如下:
1 str = ‘1ab‘ 2 out3 = re.match(r‘\d+[^abc]‘,str) 3 4 str1 = ‘1abc‘ 5 out4 = re.match(r‘\d+[^abc]‘,str1) 6 7 print(‘out:‘,out3) 8 print(‘out1:‘,out4) 9 10 # 11 #out3: None 12 #out4: None
时间: 2024-10-06 07:43:04