string_find [function]

string_find( string str, string substr, int offset = 0 )

returns the position of first found substring substr in string str, starting at offset

string_find( "what hat", "hat" ); // int 1
string_find( "what", "hat", 2 ); // null