System.AnsiStrings.SameText

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function SameText(const S1, S2: AnsiString): Boolean;
function SameText(const S1, S2: AnsiString; LocaleOptions: TLocaleOptions): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall SameText(const System::AnsiString S1, const System::AnsiString S2)/* overload */;

プロパティ

種類 可視性 ソース ユニット
function public
System.AnsiStrings.pas
System.AnsiStrings.hpp
System.AnsiStrings System.AnsiStrings

説明

2 つの文字列が等しいかどうかを、大文字と小文字を区別しないで比較します。

SameText は、S1S2 を大文字と小文字を区別しないで比較します。S1S2 が等しい場合(つまり、CompareText が 0 を返す場合)、true を返します。SameText は、CompareText と同様に、8 ビット以下の文字の処理を行うことができます。

大文字と小文字を区別して文字列を比較する場合は、SameStr を使用します。

関連項目