word

Syntax: %word(s,i,d)

return the ith word of string s, delimited by string d (if d is missing, a space is used as the word delimiter

Examples:

#SHOW %word("abc defg hijk lm",3)

displays:

hijk
#SHOW %word("This, is a, test.",2,", ")

displays:

is a


Contents walkmode write