RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
SysUtils.AppendStr Function

Appends a dynamically allocated string to an existing string.

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

SysUtils

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) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!