Operator Type:
Operator Scope of Action:
Operator Purpose:
Operator First Added:
Operator Altered:
Function [other Function type actions]
Item [operators of similar scope]
Data manipulation [other Data manipulation operators]
6.5.0
String.find("string")
This operator returns a number with the location of the first occurrence of a substring within the source string. The operator searches for literal strings, not regular expressions. Matches are case sensitive. The offset is zero-based (position 1 is zero). If the string is not found, String.find() returns -1.
For example, if $MyString is "I do not like green eggs and ham":
$MyString.find("not")
returns 5
$MyString.find("blue")
returns -1 (not found in match string)
$MyString.find("Not")
returns -1 (not found - case-sensitive matching)