Home | Libraries | People | FAQ | More |
boost::algorithm::trim_fill_copy_if — Trim Fill - parametric.
// In header: <boost/algorithm/string/trim_all.hpp> template<typename SequenceT, typename RangeT, typename PredicateT> SequenceT trim_fill_copy_if(const 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 result is a trimmed copy of the input
Parameters: |
|
||||||
Returns: |
A trimmed copy of the input |