word
Syntax: %word(string,n,delimiter)
return the nth word of string, delimited by string delimiter (if delimiter is missing, a space is used)
Examples:
#SHOW %word("abc defg hijk lm",3)
displays: hijk
#SHOW %word("This, is a, test.",2,", ")
displays: is a |