Simple solution in Clear category for First Word by masterspace.dc
import re def first_word(text): return re.findall(r"[A-Za-z']+",text)[0]
Dec. 10, 2017