fork download
  1. import re
  2.  
  3. my_text = '2 Running Hrs - \tPort M/E RPM \t- \t'
  4. print(re.search('Running Hrs([^\t\r\n]+)\t', my_text).group(1).strip())
Success #stdin #stdout 0.02s 9500KB
stdin
Standard input is empty
stdout
-