Compare()

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

Usage

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

Calling

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

Compare(
   string1=?, 
   string2=?
);

Supports passing parameters as a structure using ArgumentCollection:

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