FindNocase()

Looks for the given substring in the string (case insensitive), starting optionally at the index position

Usage

NUMERIC = FindNocase( 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:

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

Supports passing parameters as a structure using ArgumentCollection:

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