标签: 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)