RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
SysUtils.AppendStr Function

Appends a dynamically allocated string to an existing string.

Pascal
procedure AppendStr(var Dest: AnsiString; const S: AnsiString); deprecated;
C++
AppendStr(AnsiString Dest, const AnsiString S);

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; 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!