Length-limited case-insensitive string compare.
Source position: utility.pas line 373
function Strnicmp( |
const Str1: PChar; |
const Str2: PChar; |
len: LongInt |
):LongInt; |
const string1: string; |
const string2: pCHAR; |
length: LongInt |
):LongInt; |
const string1: pCHAR; |
const string2: string; |
length: LongInt |
):LongInt; |
const string1: string; |
const string2: string; |
length: LongInt |
):LongInt; |
Str1 |
|
String to compare |
Str2 |
|
String to compare |
Relationship between string1 and string2 <0 means string1 < string2 =0 means string1 = string2 >0 means string1 > string2
This function compares two strings, ignoring case using a generic case conversion routine. If the strings have different lengths, the shorter is treated as if it were extended with zeros. This function never compares more than 'length' characters.
Whenever locale.library is installed in a system, this function is replaced by language-specific code. This means that depending on which language the user has currently selected, identical pairs of strings may return different values when passed to this function. This fact must be taken into consideration when using this function.
|
Case-insensitive string comparison. |