IF TEST = 1 { ASSIGN Example1 = "Wes|Clay|Mark|Jed|Mike|Bill|Ryanne" ASSIGN Example2 = "8013203437" ASSIGN Example3 = "" } //If the variable contains an array, this returns the number of elements //within the array. IF the value is not an array, but is not empty, the value 1 //is returned. Otherwise, 0 is returned. ASSIGN Ex1Size = Example1.size ASSIGN Ex2Size = Example2.size ASSIGN Ex3Size = Example3.size //Count -- This is a synonym for size. ASSIGN Ex1Count = Example1.count ASSIGN Ex2Count = Example2.count ASSIGN Ex3Count = Example3.count