string.firstWord ("Eat a good lunch!")
» "Eat"
string.firstWord ("Coming-into-being is here.")
» "Coming-into-being"
This return value assumes a space is still the wordChar.
string.setWordChar ("-")
string.firstWord ("Coming-into-being just left.")
» "Coming" // assuming hyphen is now wordChar
The first hyphen occurs after the word "coming." This example sets hyphen as the wordChar.
string.setWordChar ('');
s = "Eat a good lunch!";
string.firstWord (s) + " " + string.lastWord (s)
» "Eat lunch!"
The string returned by this verb does not include the word delimiter.
Space is necessary in above script because string.firstWord does not include the delimiter in the word it extracts.