Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
string::rfind

Find the last occurrence of a string within the string.

std::size_t
rfind(
    string_view sv,
    std::size_t pos = string::npos) const noexcept;
  » more...

Find the last occurrence of a character within the string.

std::size_t
rfind(
    char ch,
    std::size_t pos = string::npos) const noexcept;
  » more...

PrevUpHomeNext