StringListItemValues

Reads the value after the specified index and writes a comma-separated text in the target string list.

SYNTAX
StringListItemValues(stringList, lineIndex,destList) 
ARGUMENTS

stringList Name of the string list
lineIndex Line index of the string list, beginning with 0
destList Name of the target string list

RETURN Value name
EXAMPLE
StringlistAdd("test","Valuelist=1,2,3,4,5")

name = StringListItemValues("test",0,"Values")

;--> Name = "Valuelist"

;

value = StringListLine("Values",0)

;--> value = "1 "

;

value = StringListLine("Values",1)

;--> value = "2 "