Would like to determine how many elements in a string “array” such as:
String = “zero, one, two , three”
This has four elements which can be accessed using:
arrayitem(n, String)
So other than looping through the string to count how many commas it contains, is there an easier way?
Thanks!