Share

AcString::trim

C++

AcString & trim(
    wchar_t wch
);

Description

Removes initial matching characters from both sides 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 each side on first char that does not match. Does nothing if wch is null character.

Links

AcString

Previous Declaration

ACBASE_PORT AcString & trim(wchar_t wch);

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

Was this information helpful?