System.SysUtils.StrComp
Delphi
function StrComp(const Str1, Str2: MarshaledAString): Integer; overload;
function StrComp(const Str1, Str2: PWideChar): Integer;
C++
extern DELPHI_PACKAGE int __fastcall StrComp _DEPRECATED_ATTRIBUTE1("Moved to the AnsiStrings unit") (const char * Str1, const char * Str2)/* overload */;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
説明
警告: StrComp の ANSI バージョンは廃止予定です。AnsiStrings ユニットを使用してください。
大文字と小文字を区別して 2 つの文字列を比較します。
StrComp 関数を呼び出すと,大文字と小文字を区別して,ヌルで終わる 2 つの文字列を比較できます。以下の戻り値があります。
戻り値 | ブレーク条件 |
---|---|
<0 |
Str1 は,Str2 より先にソートを実行します。 |
=0 |
Str1 と Str2 は同じです。 |
>0 |
Str1 は,Str2 の後にソートを実行します。 |
メモ: 国別文字を扱う場合は,かわりに AnsiStrComp を使用してください。