...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::algorithm::trim_fill_if — Trim Fill.
// In header: <boost/algorithm/string/trim_all.hpp> template<typename SequenceT, typename RangeT, typename PredicateT> void trim_fill_if(SequenceT & Input, const RangeT & Fill, PredicateT IsSpace);
Remove all leading and trailing spaces from the input and replace all every block of consecutive spaces with a fill string defined by user. The input sequence is modified in-place.
Parameters: |
|