[Overview][Constants][Types][Procedures and functions][Index] Reference for unit 'utility' (#aros)

Strnicmp

Length-limited case-insensitive string compare.

Declaration

Source position: utility.pas line 233

function Strnicmp(

  const Str1: STRPTR;

  const Str2: STRPTR;

  Length_: LongInt

):LongInt;

Arguments

Str1

  

String to compare

Str2

  

String to compare

Length_

  

Maximum number of characters to examine

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. 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.

See also

Stricmp

  

Case-insensitive string comparison.


Documentation generated on: 2017-01-10