Share

AcString::append

C++

AcString & append(
    const char * psz, 
    Encoding encoding
);

Description

Appends a character string to the end of the string.

Parameters

Parameters Description
psz Input pointer to the narrow character string
encoding Input Encoding type

Returns

A reference to this string object.

Remarks

Currently, only Utf8 encoding is supported.

Links

AcString

Previous Declaration

ACBASE_PORT AcString & append(const char *psz, Encoding encoding);

ACBASE_PORT AcString & append(const char * psz);

Was this information helpful?