This is an old revision of the document!
GetListElement (<-list I) ->element
Returns the value at the specified index of a list. Lists are indexed from zero.
Note: If a list is stored in a variable, this can be abbreviated to <-list[<-index].
Split("1,2,3,4,5,6" ",") ->list 6 0 do Trace (<-list I GetListElement) #functionally equivalent Trace (<-list[I]) #functionally equivalent loop
⇐ Index