Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First Wood solution in Clear category for First Word by w78Rq
import re
def first_word(text):
result = re.search(r"[A-Za-z][A-Za-z']{0,}", text)
return result.group()
Oct. 10, 2018
Comments: