System.SysUtils.StrLCat
Delphi
function StrLCat(Dest: MarshaledAString; const Source: MarshaledAString; MaxLen: Cardinal): MarshaledAString; overload;
function StrLCat(Dest: PWideChar; const Source: PWideChar; MaxLen: Cardinal): PWideChar;
C++
extern DELPHI_PACKAGE char * __fastcall StrLCat _DEPRECATED_ATTRIBUTE1("Moved to the AnsiStrings unit") (char * Dest, const char * Source, unsigned MaxLen)/* overload */;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
説明
警告: StrLCat の ANSI バージョンは廃止予定です。AnsiStrings ユニットを使用してください。
指定された文字数を文字列に追加します。
StrLCat 関数は,最大で MaxLen - StrLen(Dest) 文字を Source から Dest の最後に追加し,Dest を返します。パラメータの値を決めるにつまり,MaxLen は,結果の文字列で許可される最大長を示します。