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-insensitive.
findNoCase(substring, string [, start])
returns numeric
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| substring | string | Yes | The string for which you are looking | |
| string | string | Yes | The string in which to search | |
| start | numeric | No | 1 | The position from which to start searching in the string |
findNoCase("s", "cfdocs.org", 0)