fork download
  1. import re
  2. input = "I can’t understand what's wrong"
  3. text = re.sub("(?<=\w)[‘`’'](?=\w)", '', input)
  4. print(text)
Success #stdin #stdout 0.02s 9536KB
stdin
Standard input is empty
stdout
I cant understand whats wrong