FIND

Get the number of characters at which a string is first found within a text. FIND() is case sensitive.

Parameter List

Syntax
FIND(search_keytext
[start]
)
search_key

The string to look for within the text string. For example: "shuttle".

text

The string in which to search for the search_key string. For example: "SpaceX shuttle".

[optional] start

The character within text at which to start the search. For example: 5. By default it starts at 1.

Examples

FIND("super", "Do you really think the superman is super fast?") returns 25