System.AnsiStrings.AppendStr
Delphi
procedure AppendStr(var Dest: AnsiString; const S: AnsiString);
C++
extern DELPHI_PACKAGE void __fastcall AppendStr _DEPRECATED_ATTRIBUTE0 (System::AnsiString &Dest, const System::AnsiString S);
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
procedure function |
public | System.AnsiStrings.pas System.AnsiStrings.hpp |
System.AnsiStrings | System.AnsiStrings |
説明
警告: AppendStr は非推奨になっています。
動的に割り当てられた文字列を既存の文字列に追加します。
AppendStr は S を Dest の最後に追加します。これは下位互換性のためにのみ提供されています。そのかわり,+ 演算子を使用します。
Dest := Dest + S;
Dest = Dest + S;