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 the documentation for a snapshot of the develop branch, built from commit d7c8a7cf0d.
PrevUpHomeNext

Function template trim_fill_copy_if

boost::algorithm::trim_fill_copy_if — Trim Fill - parametric.

Synopsis

// 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);

Description

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:

Fill

A string used to fill the inner spaces

Input

An input sequence

IsSpace

A unary predicate identifying spaces

Returns:

A trimmed copy of the input


PrevUpHomeNext