System.StrUtils.LeftStr
Delphi
function LeftStr(const AText: AnsiString; const ACount: Integer): AnsiString; overload;
function LeftStr(const AText: string; const ACount: Integer): string; overload;
C++
extern DELPHI_PACKAGE System::AnsiString __fastcall LeftStr _DEPRECATED_ATTRIBUTE1("Moved to the AnsiStrings unit") (const System::AnsiString AText, const int ACount)/* overload */;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.StrUtils.pas System.StrUtils.hpp |
System.StrUtils | System.StrUtils |
説明
文字列の最初に表示される指定された長さの部分文字列を返します。
LeftStr 関数は,AText の先頭から ACount で指定された文字数以内の文字数を返します。
メモ: AText が AnsiString で,現在のロケールがマルチバイト文字列を使用している場合,LeftStr は ACount 以上のバイト数を返す場合があります。特定のバイト数を返すには,LeftBStr 関数を使用してください。