SysUtils.StrCat
From RAD Studio VCL Reference
Contents |
Delphi Information
From SysUtils.pas
function StrCat(Dest: PAnsiChar; const Source: PAnsiChar): PAnsiChar; overload; function StrCat(Dest: PWideChar; const Source: PWideChar): PWideChar; overload;
Unit: SysUtils
Type: function
Visibility: public
C++ Information
From SysUtils.hpp
char * __fastcall StrCat(char * Dest, const char * Source);
Unit: SysUtils
Type: function
Description
Appends a copy of Source to the end of Dest and returns the concatenated string.
Use StrCat to concatenate Source to the end of Dest. StrCat does not perform any length check. The destination buffer must have room for at least StrLen(Dest)+StrLen(Source)+1 characters.
To check length, use the StrLCat function.
See Also
Code Samples