Tags · Functions · Objects
Lucee Function Reference
Choose a function:

Function GETTOKEN

Determines whether a token of the list in the delimiters
parameter is present in a string.
Returns the token found at position index of the string, as a
string. If index is greater than the number of tokens in the
string, returns an empty string.

Example

gettoken(string string,number index,[string delimiters]):string

Arguments

The arguments for this function are set. You can not use other arguments except the following ones.
Name Type Required Description
string string  Yes String in which to search.  
index number  Yes Positive integer. The position of a token.  
delimiters string  No A delimited list of delimiters. Elements may consist of multiple characters.
Default list of delimiters: space character, tab character, newline character; or their codes: "chr(32)", "chr(9)", chr(10).
Default list delimiter: comma character.