indexOf
Returns the first occurrence of a specified substring.
Syntax
aString indexOf (substr, start)
Parameters
substr - String
The substring to search for.
start - Integer
The index to start the search (0 to start the search from the beginning).
Return Value
The index of the first occurrence of the substring, or nil if not found.