python特定字符串加数字的正则表达式

时间:2019-03-05 21:37:10

标签: python regex

我想从f中获得所有以11开头的字符 AL0加8位数字。我尝试了以下操作,但无法正常工作

import re

p=r"AL0\d{8}"

f= "take this one AL012345678 , not this one fAL012345670 , nor AL0123333333311, nor AL012345679f ,but also AL012345555."

m=re.findall(p,f)

print (m)

0 个答案:

没有答案