Pascal Scripting: CompareText

Prototype:

function CompareText(const S1, S2: string): Integer;

Description:

Compares the strings S1 and S2 and returns 0 if they are equal. If S1 is greater than S2, CompareText returns an integer greater than 0. If S1 is less than S2, CompareText returns an integer less than 0. The CompareText function is not case-sensitive.