...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Find the last occurrence of a string within the string.
std::size_t
rfind(
string_view sv,
std::size_t pos = npos) const;
» more...
Find the last occurrence of a character within the string.
std::size_t
rfind(
char ch,
std::size_t pos = npos) const;
» more...