Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for First Word by wrap
import re
def first_word(text: str) -> str:
return re.findall(r'[^ ,.]+', text)[0]
Dec. 23, 2018
Comments: