|  | Home | Libraries | People | FAQ | More | 
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...