Share

AcString::trimRight

C++

AcString & trimRight(
    const wchar_t * pwszChars
);

Description

Removes all designated characters from the end of the string.

Parameters

Parameters Description
pwszChars Input pointer to the string of characters to be removed

Returns

A reference to this string object.

Remarks

Trims whitespace if pwszChars is nullptr. Does nothing if pwszChars is an empty string.

Links

AcString

Previous Declaration

ACBASE_PORT AcString & trimRight(const wchar_t *pwszChars);

Was this information helpful?