Appends a dynamically allocated string to an existing string.
procedure AppendStr(var Dest: string; const S: string); deprecated;
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!
|