 
      
      find()Find the position of the first occurrence of a substring in a string
find(s, search, start_pos = 0)
s (string)  — A stringsearch (string)  — A string to search forstart_pos (number, optional)  — Where to begin the search. The default value is 0 (at the beginning of s)
number — Returns the position of the first character of the first match. Returns -1 if no matches were found
find("Hello World", "Wo")       ' Returns 6
find("Hello World", "Wo", 10)   ' Returns -1