Share

AcString::trimRight

C++

AcString & trimRight(
    wchar_t wch
);

Description

Removes initial matching characters from right side of the string.

Parameters

Parameters Description
wch Input non-null wide character to match to be removed

Returns

A reference to this string object.

Remarks

Stops removing on first char that does not match. Does nothing if wch is null character.

Links

AcString

Previous Declaration

ACBASE_PORT AcString & trimRight(wchar_t wch);

inline AcString & AcString::trimRight(wchar_t wch);

Was this information helpful?