|  | Home | Libraries | People | FAQ | More | 
boost::algorithm::trim_fill — Trim Fill.
// In header: <boost/algorithm/string/trim_all.hpp> template<typename SequenceT, typename RangeT> void trim_fill(SequenceT & Input, const RangeT & Fill, const std::locale & Loc = std::locale());
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: | 
 | ||||||
| Returns: | A trimmed copy of the input |