StringListIndexOf

Returns the position of the first element in the line of the string list that contains the specified value.

SYNTAX
StringListIndexOf(stringList,aLine) 
ARGUMENTS

stringList Name of the string list
aLine Search value

RETURN Position of the element
EXAMPLE
StringlistAdd("Title", "Mr.","Mrs.","Company","Family")

Pos = StringListIndexOf ("Title","Company")

;-->Pos=2