after using split in utility what are the names of slices
-
so i have loli script as,
UTILITY Variable "login" Split ":" -> VAR "new"
it returns this
[a, b]
waht are the names of slices
i tried <new(1)> and <new(2)> but instead of posting first and second var in list it post whole <new> list variable
-
You have to use square brackets not curved ones.
<new[1]>
-
Also i'm pretty sure it starts counting from 0