| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Append one ansistring to another.
Source position: sysstrh.inc line 70
| procedure AppendStr( | 
| var Dest: string; | 
| const S: string | 
| ); | 
AppendStr appends S to Dest.
This function is provided for Delphi compatibility only, since it is completely equivalent to Dest:=Dest+S.
None.
| 
 | Assigns an ansistring to a null-terminated string. | |
| 
 | Allocate a new ansistring on the heap. | |
| 
 | Dispose an ansistring from the heap. | 
Program Example62; { This program demonstrates the AppendStr function } Uses sysutils; Var S : AnsiString; Begin S:='This is an '; AppendStr(S,'AnsiString'); Writeln ('S = "',S,'"'); End.