SysUtils.StrLCat
From RAD Studio VCL Reference
Contents |
Delphi Information
From SysUtils.pas
function StrLCat(Dest: PAnsiChar; const Source: PAnsiChar; MaxLen: Cardinal): PAnsiChar; overload; function StrLCat(Dest: PWideChar; const Source: PWideChar; MaxLen: Cardinal): PWideChar; overload;
Unit: SysUtils
Type: function
Visibility: public
C++ Information
From SysUtils.hpp
char * __fastcall StrLCat(char * Dest, const char * Source, unsigned int MaxLen);
Unit: SysUtils
Type: function
Description
Appends up to a specified maximum number of characters to a string.
StrLCat appends a maximum MaxLen - StrLen(Dest) characters from Source to the end of Dest and returns Dest. MaxLen indicates the maximum length that is allowed in the result string.
See Also
Code Samples