wordDelimiter
-
local property
-
The wordDelimiter is a text string that defines the set of characters SenseTalk treats as delimiters between word chunks. Words are separated from each other by any number or combination of characters from that set.
-
Examples: +
put each word of "Alas, poor Yorick!! etc." —> ["Alas,","poor","Yorick!!","etc."]
set the wordDelimiter to " ,.!"
put each word of "Alas, poor Yorick!! etc." —> ["Alas","poor","Yorick","etc"] -
Related: defaultWordDelimiter, wordFiller, wordQuotes