System.AnsiStrings.AppendStr

From RAD Studio API Documentation
Jump to: navigation, search

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);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.AnsiStrings.pas
System.AnsiStrings.hpp
System.AnsiStrings System.AnsiStrings

Description

Warning: AppendStr is deprecated.

Appends a dynamically allocated string to an existing string.

AppendStr appends S to the end of Dest. It is provided for backwards compatibility only. Use the + operator instead:

Dest := Dest + S;

Dest = Dest + S;