System.AnsiStrings.StrLCat
Delphi
function StrLCat(Dest: PAnsiChar; const Source: PAnsiChar; MaxLen: Cardinal): PAnsiChar;
C++
extern DELPHI_PACKAGE char * __fastcall StrLCat(char * Dest, const char * Source, unsigned MaxLen)/* overload */;
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| function | public | System.AnsiStrings.pas System.AnsiStrings.hpp | System.AnsiStrings | System.AnsiStrings | 
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 Examples