CStringT::ReverseFind
Recherche cet objet d' CStringT pour la dernière occurrence d'un caractère.
int ReverseFind(
XCHAR ch
) const throw();
Paramètres
- ch
Le caractère à rechercher.
Valeur de retour
L'index de base zéro du dernier caractère dans cet objet d' CStringT que correspond au caractère demandé, ou – 1 si le caractère est introuvable.
Notes
La fonction est semblable à la fonction runtime strrchr.
Exemple
// typedef CStringT<TCHAR, StrTraitATL<TCHAR, ChTraitsCRT<TCHAR>>> CAtlString;
CAtlString s(_T("abcabc"));
ASSERT(s.ReverseFind(_T('b')) == 4);
Configuration requise
Header: cstringt.h