See if the integer/long is a member of the array of integers Returns the array index matching the integer or -1 if not located.
The long to find
The array to search
dim sarr(3) as long sarr(1) = 3 sarr(2) = 5 sarr(3) = 7 print xf.Str.FindStringInArray(7, sarr) => 3 print xf.Str.FindStringInArray(1, sarr) => -1