fork download
  1. import re
  2. obj = re.match('.*(\d{2}-\d{2} \d{2}:\d{2})', "\n09-22 13:27", re.S)
  3. if obj:
  4. print(obj.group(1))
  5.  
Success #stdin #stdout 0.02s 9016KB
stdin
Standard input is empty
stdout
09-22 13:27