System.SysUtils.LastDelimiter

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

Delphi

function LastDelimiter(const Delimiters, S: string): Integer;

C++

extern DELPHI_PACKAGE int __fastcall LastDelimiter(const System::UnicodeString Delimiters, const System::UnicodeString S)/* overload */;

プロパティ

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

説明

指定された区切り文字のセットのいずれかの文字と一致する、最後の文字のインデックスを返します。

LastDelimiter を呼び出すと、指定された文字列内の最後の区切り文字を検索することができます。

Delimiters は、各文字が有効な区切り文字を表す文字列です。

S は、区切り文字を検索する文字列です。

たとえば、次の行の場合:

 MyIndex := LastDelimiter('\.:','c:\filename.ext'); { Delphi }
 MyIndex = LastDelimiter("\\.:","c:\\filename.ext"); /* C++ */

MyIndex 変数は 12 に設定されます。

関連項目