Share

AcString::findOneOfRev

C++

Adesk::Int32 findOneOfRev(
    const ACHAR * pwsz
) const;

Description

Deprecated. Finds the last character in this string from a group of characters.

Parameters

Parameters Description
pwsz Input group of characters to match

Returns

Position in which the character was found, else -1 if not found.

Links

AcString

Use Instead

ACBASE_PORT int findLast(const ACHAR * psz, int nEndPos = -1) const;

Was this information helpful?