Share

AcString::trimLeft

C++

AcString & trimLeft(
    const wchar_t * pwszChars
);

Description

Removes all designated characters from beginning 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 & trimLeft(const wchar_t *pwszChars);

Was this information helpful?