System.SysUtils.StrMove
Delphi
function StrMove(Dest: PAnsiChar; const Source: PAnsiChar; Count: Cardinal): PAnsiChar;
function StrMove(Dest: PWideChar; const Source: PWideChar; Count: Cardinal): PWideChar;
C++
extern DELPHI_PACKAGE char * __fastcall StrMove _DEPRECATED_ATTRIBUTE1("Moved to the AnsiStrings unit") (char * Dest, const char * Source, unsigned Count)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
Warning: The ANSI version of StrMove is deprecated. Please use the AnsiStrings unit.
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