Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2024. The current version is 1.90.0.
Find the last occurrence of any of the characters within the string.
std::size_tfind_last_of(string_viewsv,std::size_tpos =string::npos) const noexcept;
Returns the index corrosponding to the last occurrence of any of the characters
of sv within {begin(), begin() + pos} if it exists, and npos otherwise.
Linear.
The last occurrence of any of the characters within sv
within the string starting before or at the index pos,
or npos
if none exists.
|
Name |
Description |
|---|---|
|
|
The characters to search for. |
|
|
The index to stop searching at. The default argument for this
parameter is |