System.AnsiStrings.LastDelimiter

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

Delphi

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

C++

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

プロパティ

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

説明

右端にある区切り文字のバイト インデックス。

LastDelimiter は、Delimiters パラメータ(null (#0) を除く)のいずれかの文字と一致する右端の文字に対する S のバイト インデックスを返します。S は、マルチバイト文字を含んでいる場合があります。Delimiters は、NULL ではないシングルバイト文字のみを含んでいる必要があります。

たとえば、LastDelimiter('\.:', 'c:\filename.ext')12 を返します。

関連項目