fork(2) download
  1. import re
  2. grp = "Application: Company Name / 184010 - Application Development / 184010 - Contract Express"
  3. rgx = "\w+(?!.*[-/])"
  4. res = re.findall(rgx, grp)
  5. print(res)
Success #stdin #stdout 0.02s 27712KB
stdin
Standard input is empty
stdout
['Contract', 'Express']