System.AnsiStrings.StrCopy
Delphi
function StrCopy(Dest: PAnsiChar; const Source: PAnsiChar): PAnsiChar;
C++
extern DELPHI_PACKAGE char * __fastcall StrCopy(char * Dest, const char * Source)/* overload */;
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
function | public | System.AnsiStrings.pas System.AnsiStrings.hpp |
System.AnsiStrings | System.AnsiStrings |
Description
Copie une chaîne terminée par le caractère Null.
Utilisez StrCopy pour copier Source dans Dest. StrCopy renvoie Dest.
StrCpy n'effectue aucune vérification de taille. Le tampon de destination doit pouvoir stocker au moins StrLen(Source)+1 caractères.
Pour disposer de la vérification de taille, utilisez la fonction StrLCopy.