Search Functions
The following table lists the search functions. See also Functions.
Function | Description |
---|---|
FindOneOf (string1, string2) |
Returns 1-based index of the first instance in string1 of a character in string2. For example:
returns 3. |
FindNoneOf (string1, string2) |
Returns 1-based index of the first instance in string1 which does not match any character in string2. For example:
returns 1. |