fork download
  1. import re
  2. print [x.group(1) for x in re.finditer(r"\b([a-zA-Z]+)d\b","dord word")]
Success #stdin #stdout 0s 7692KB
stdin
Standard input is empty
stdout
['dor', 'wor']