System.SysUtils.StrLIComp
Delphi
function StrLIComp(const Str1, Str2: PAnsiChar; MaxLen: Cardinal): Integer;
function StrLIComp(const Str1, Str2: PWideChar; MaxLen: Cardinal): Integer;
C++
extern DELPHI_PACKAGE int __fastcall StrLIComp _DEPRECATED_ATTRIBUTE1("Moved to the AnsiStrings unit") (const char * Str1, const char * Str2, unsigned MaxLen)/* overload */;
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
Avertissement : La version ANSI de StrLIComp est obsolète. Veuillez utiliser l’unité AnsiStrings.
Compare des chaînes sur le nombre de caractères spécifié, sans distinction des minuscules/majuscules.
StrLIComp compare Str1 à Str2, jusqu'à la longueur maximum de MaxLen caractères, sans distinction minuscules/majuscules. La valeur renvoyée est indiquée dans le tableau suivant :
Valeur renvoyée | Condition |
---|---|
<0 |
Str1 avant Str2 |
=0 |
Str1 identique à Str2 |
>0 |
Str1 après Str2 |
Remarque : Lorsque vous utilisez des caractères internationaux, servez-vous plutôt de AnsiStrLIComp.