Returns the item in the list (array) at the specified index position.
ArrayItem(List:String,Delimiter:String,Index:Integer):String
List specifies the list of strings in which to search.
Delimiter is the character to use to delineate items in the string list. Supported special characters:
[comma]
[space]
[tab]
Note: | You must use the name of the delimiter (not the character) and include brackets around the name. |
Index is the position of the string in the list. A negative value indicates the last item in the list.
ArrayItem(Diet Cola;Root Beer;Cola,;,3)
Return value is Cola.