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