System.SysUtils.StrPCopy

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

function StrPCopy(Dest: PAnsiChar; const Source: AnsiString): PAnsiChar;
function StrPCopy(Dest: PWideChar; const Source: UnicodeString): PWideChar;

C++

extern DELPHI_PACKAGE char * __fastcall StrPCopy _DEPRECATED_ATTRIBUTE1("Moved to the AnsiStrings unit") (char * Dest, const System::AnsiString Source)/* overload */;

Propriétés

Type Visibilité  Source Unité  Parent
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

Avertissement : La version ANSI de StrPCopy est obsolète. Veuillez utiliser l’unité AnsiStrings.

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.

Voir aussi