fork download
  1. import re
  2. s = '093627, 09206277, 09129627173, 097177627878328218'
  3. print(re.findall(r'(?<!\d)(?=\d{11}(?!\d))09\d*62\d*', s))
Success #stdin #stdout 0.02s 9616KB
stdin
Standard input is empty
stdout
['09129627173']