FindOneOf() searches a string to find the position of the occurrence of any character from a set of provided characters. The position of the first occurrence of any character from the search set is returned unless a third argument (with a value greater than 1) is supplied. If no match is found, 0 is returned.
Syntax:
FindOneOf(text, char_set[, count])
Return data type: integer
Arguments:
| Argument | Description | 
|---|---|
| text | The original string. | 
| char_set | A set of characters to search for in text. | 
| count | Defines which occurrence of any of the characters to search for. For example, a value of 2 searches for the second occurrence. |