Description
Finds the first occurrence of a substring in a string, from a specified start position. The search is case sensitive.
Returns
A number; the position of substring in string; or 0, if substring is not in string.
Category
Function syntax
Find(substring, string [, start ]) |
See also
FindNoCase, Compare, FindOneOf, REFind, Replace
Parameters
Parameter |
Description |
---|---|
substring |
A string or a variable that contains one. String for which to search. |
string |
A string or a variable that contains one. String in which to search. |
start |
Start position of search. |
Example
<cfoutput>
|