Comparenocase()

Performs a lexical comparison, ignoring the case. If string1 is less than string2 then -1 returned. If string1 greater than string then 1 is return. 0 if equals

Usage

NUMERIC = Comparenocase( string1, string2 )
Argument Summary
string1 string1
string2 string2

Calling

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

Comparenocase(
   string1=?, 
   string2=?
);

Supports passing parameters as a structure using ArgumentCollection:

Comparenocase( ArgumentCollection={
   string1 : ?, 
   string2 : ?
} );