fork download
  1. import re
  2. s = '51Pa*0Lp*0e'
  3. print(re.findall(r'[A-Z][a-z]\*',s))
Success #stdin #stdout 0.02s 9564KB
stdin
Standard input is empty
stdout
['Pa*', 'Lp*']