Find(where, what)The function returns an integer specifying the start position of the first occurrence of one string within another. It returns 0 if the string is not found. Example:
iPos1 = Find("Hello World", "World") ' it is 7
iPos2 = Find("Hello World", "USA") ' it is 0, because "USA" it is not found within "Hello World"
See also: