Searches for a substring within a string. Takes str (string to search), substring (substring to find), start (1-based starting position). Returns the 1-based position of the first occurrence of substring within str, or 0 if not found.
str
String
substring
String
start
Int
; No example implemented yet