System.AnsiStrings.StrECopy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function StrECopy(Dest: PAnsiChar; const Source: PAnsiChar): PAnsiChar;

C++

extern DELPHI_PACKAGE char * __fastcall StrECopy(char * Dest, const char * Source)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.AnsiStrings.pas
System.AnsiStrings.hpp
System.AnsiStrings System.AnsiStrings

Description

Copies a null-terminated string.

StrECopy copies Source to Dest and returns StrEnd(Dest).

StrECopy does not perform any length check. The destination buffer must have room for at least StrLen(Source)+1 characters.

Nested calls to StrECopy to concatenate a sequence of strings run more efficiently than multiple calls to StrCat.

See Also

Code Examples