System.AnsiStrings.StrMove
Delphi
function StrMove(Dest: PAnsiChar; const Source: PAnsiChar; Count: Cardinal): PAnsiChar;
C++
extern DELPHI_PACKAGE char * __fastcall StrMove(char * Dest, const char * Source, unsigned Count)/* overload */;
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| function | public | System.AnsiStrings.pas System.AnsiStrings.hpp | System.AnsiStrings | System.AnsiStrings | 
Description
Copies a specified number of characters to the string.
StrMove copies exactly Count characters from Source to Dest and returns Dest. Source and Dest can overlap.
See Also
Code Examples