fork download
  1. import re
  2. regex = re.compile("(\d+)")
  3. r = regex.search("19 Count 1 Count")
  4. print(int(r.group(1)))
  5.  
Success #stdin #stdout 0.01s 7896KB
stdin
Standard input is empty
stdout
19