STD.Str.EqualIgnoreCase( source1,source2 )
| source1 | A string containing the data to compare. |
| source2 | A 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"