System.AnsiStrings.StrPCopy
Delphi
function StrPCopy(Dest: PAnsiChar; const Source: AnsiString): PAnsiChar;
C++
extern DELPHI_PACKAGE char * __fastcall StrPCopy(char * Dest, const System::AnsiString 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 AnsiString (longue chaîne) dans une chaîne à zéro terminal.
StrPCopy copie Source dans une chaîne à zéro terminal Dest. Elle renvoie un pointeur vers Dest.
StrPCopy n'effectue aucune vérification de taille.
Le tampon de destination doit être assez grand pour contenir au moins Length(Source)+1 caractères.