String-Find

(string-find string1 string2) -> integer

Returns the index reference (see indexing system) for the first occurrence of string2 in string1. If string2 is not found, returns #f.

Example:

>>(string-find "Eric" "r")
:: 1