Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
using split and replace solution in Speedy category for First Word by Alex_ZhangCN
def first_word(text:str) -> str:
text = text.replace(',','').replace('.', ' ')
return text.split()[0]
June 13, 2018