Share

AcString::spanExcluding

C++

AcString spanExcluding(
    const wchar_t * pwszChars
) const;

Description

Extracts a substring up to the first instance of a designated character.

Parameters

Parameters Description
pwszChars Input null terminated string of chars at which to stop scanning

Returns

AcString object that contains the substring. If pwszChars is nullptr or empty, the entire string is returned.

Links

AcString

Previous Declaration

ACBASE_PORT AcString spanExcluding(const wchar_t *pwszChars) const;

Was this information helpful?