C++
Adesk::Int32 findRev( ACHAR ch ) const;
Description
Deprecated. Finds the last occurrence of a character in the string.
Parameters
Parameters | Description |
---|---|
ch | Input character to search for |
Returns
Position in which the character was found, else -1.
Links
Previous Declaration
AutoCAD 2024 and earlier
int findRev(ACHAR ch) const;
inline int AcString::findRev(ACHAR ch) const;
Use Instead
Adesk::Int32 findLast(ACHAR ch, Adesk::Int32 nEndPos = -1) const;
History
AutoCAD 2025
Function now returns Adesk::Int32 instead of int.