Unit 'utility' Package
[Overview][Constants][Types][Procedures and functions][Variables][Index] [#os4units]

Stricmp

Case-insensitive string comparison.

Declaration

Source position: utility.pas line 296

function Stricmp(

  const S1: PChar;

  const S2: PChar

):LongInt;

Function result

Relationship between string1 and string2 <0 means string1 < string2 =0 means string1 = string2 >0 means string1 > string2

Description

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.

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.

See also

Strnicmp

  

Length-limited case-insensitive string compare.


Documentation generated on: 2021-07-30