Hi Guys
What is the syntax to select the 3rd value of an array of 5 elements? ie return value C in the below example?
:local myStr "A,B,C,D,E";
:put [:typeof $myStr];
:local myArr [:toarray $myStr];
:put [:typeof $myArr]
:log info [:find 3 $myArr]?????