C++
AcString & trimLeft( wchar_t wch );
Description
Removes initial matching characters from left 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
Previous Declaration
ACBASE_PORT AcString & trimLeft(wchar_t wch);
inline AcString & AcString::trimLeft(wchar_t wch);