Syntax
- string listIndex(stringList, searchString)
 
Parameters
- stringList—string
 - searchString—string
 
Returns
Returns index of first occurrence of searchString.
Description
The listIndex function returns the index of the first occurrence of the searchString in the stringList or -1 if it is not found. Optional: leading or trailing * in searchString are used as wildcard.
Note:
- Indices are 0 - based.
 - Stringlists are a series of strings stored inside one string. The elements are separated by a semicolon (";"). Each item must be followed by a semicolon, also the last one! The data type is "string", thus it is not an array as used in other scripting languages.
 
Related
Examples
listIndex("rule;your;city;","city")
# result = 2listIndex("rule;your;city;","*y")
# result = 2listIndex("rule;your;city;","*y*")
# result = 1