Share

AcString::concat

C++

AcString concat(
    const char * psz, 
    Encoding encoding
) const;

Description

Copies the string and appends a string of narrow characters to it.

Parameters

Parameters Description
psz Input pointer to the narrow string to append
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 concat(const char * psz, Encoding encoding) const;

ACBASE_PORT AcString concat(const char * psz) const;

Was this information helpful?