find

Finds the first occurrence of a substring in a string, from a specified start position. If substring is not in string, returns zero. The search is case-sensitive.

find(substring, string [, start]) → returns numeric

Argument Reference

substring string
Required

The string you are looking for.

string string
Required

The string to search in.

start numeric
Default: 1

The position from which to start searching in the string

Examples
Sample code invoking the find function

Returns the index of apple in the string.

find("apple", "An apple a day keeps the doctor away.")

Expected Result: 4

Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.

Fork me on GitHub