Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for First Word by Moff
import re
def first_word(text: str) -> str:
return re.search("([\w']+)", text).group(1)
Nov. 16, 2017
Comments: