EqualIgnoreCase

STD.Str.EqualIgnoreCase( src1, src2 )

src1A string containing the data to compare.
src2A string containing the data to compare.
Return: EqualIgnoreCase returns a BOOLEAN value.

The EqualIgnoreCase function return TRUE if the source1 and source2 strings contain the same data, ignoring any differences in the case of the letters.

Example:

A := STD.Str.EqualIgnoreCase('ABCDE','abcde');
 //A contains TRUE -- they "match"

B := STD.Str.CompareIgnoreCase('ABCDE','edcba');
 //B contains FALSE -- they do not "match"