FindOneof()

Looks for the given characters in the string, starting optionally at the index position

Usage

NUMERIC = FindOneof( character, string, start )
Argument Summary
character character set
string string
start start index [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

FindOneof(
   character=?, 
   string=?, 
   start=?
);

Supports passing parameters as a structure using ArgumentCollection:

FindOneof( ArgumentCollection={
   character : ?, 
   string : ?, 
   start : ?
} );