Compares null terminated character strings case insensitively.
function AnsiStrIComp(S1: PChar; S2: PChar): Integer;
int AnsiStrIComp(const char * S1, const char * S2);
SysUtils
AnsiStrIComp compares S1 to S2, without case sensitivity. The compare operation is controlled by the current locale. The return value is the same as for CompareStr.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|