fork download
  1. import re
  2. s = "I'm goin|going to be here because I hafta|have to"
  3. s = re.sub(r'\w+\|\b', '', s)
  4. print(s)
Success #stdin #stdout 0s 23304KB
stdin
Standard input is empty
stdout
I'm going to be here because I have to