System.AnsiStrings.AnsiRightStr

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

Delphi

function AnsiRightStr(const AText: AnsiString; const ACount: Integer): AnsiString;

C++

extern DELPHI_PACKAGE System::AnsiString __fastcall AnsiRightStr(const System::AnsiString AText, const int ACount)/* overload */;

プロパティ

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

説明

文字列の終わりから指定された長さの部分文字列を返します。

AnsiRightStr は、AText の末尾から ACount 文字の長さの文字を返します。たとえば、AText が文字列 "Programmer" で ACount が 7 の場合、AnsiRightStr は文字列 "grammer" を返します。この関数は、マルチバイト文字列(MBCS)の AnsiString をサポートします。

関連項目