Find()

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

Usage

NUMERIC = Find( substring, string, start )
Argument Summary
substring substring
string string
start start index [optional]

Calling

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

Find(
   substring=?, 
   string=?, 
   start=?
);

Supports passing parameters as a structure using ArgumentCollection:

Find( ArgumentCollection={
   substring : ?, 
   string : ?, 
   start : ?
} );