System.SysUtils.TStringHelper.EndsWith

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

Delphi

function EndsWith(const Value: string): Boolean; overload; inline;
function EndsWith(const Value: string; IgnoreCase: Boolean): Boolean; overload;

プロパティ

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


説明

0 始まりのの文字列が、渡された Value サブ文字列で終わるかを返します。

EndsWith は、この文字列が、Value で渡されたサブ文字列で終わるかどうかを返します。EndsWith は、第1オーバーロード関数が使用された場合には、大文字小文字を区別します。

IgnoreCase は、大文字小文字を区別するか否かを示します。

var
  MyString: String;

begin
  MyString := 'This is a string.';
  Writeln(Boolean(MyString.EndsWith('String.', False)));
end.

出力は以下のとおりです。


FALSE

関連項目