fork download
  1. import re
  2. regex=r"[-+]?[0-9]*\.?[0-9]+(?:[eE][-+]?[0-9]+)?"
  3. string="0.00000000000000000E0 0.00000000000000000E0 0.00000000000000000E0"
  4. print(re.findall(regex,string))
Success #stdin #stdout 0s 23296KB
stdin
Standard input is empty
stdout
['0.00000000000000000E0', '0.00000000000000000E0', '0.00000000000000000E0']