array.toList()
Transform the array to a list of elements delimiter by the given string
array.toList( delimiter=string )
Returns: String
Argument | Description |
---|---|
delimiter
string,
optional
|
Character or multicharacter string to separate list elements. The default value is comma. Alias: delimiters |
Examples
myarray = ["one","two","three","four","five"];
res = myarray.tolist();
writeDump(res);