Functions Index :: A :: ArrayLen
Module:
Definition:
ArrayLen(string array)
Description:
Returns the length of array, ie the number of elements stored inside it.
Examples:
a1 = "0.5, 1.0, 1.5, 2.0, 2.5"
items = a1.ArrayLen() # items == 5
a2 = ""
itm2 = a2.ArrayLen() # itm2 == 0
$notes