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.
Erase characters from the string.
string& erase(std::size_tpos = 0,std::size_tcount =string::npos); »more...
Erase a character from the string.
string::iteratorerase(string::const_iteratorpos); »more...
Erase a range from the string.
string::iteratorerase(string::const_iteratorfirst,string::const_iteratorlast); »more...