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 an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Function template trim_copy

boost::algorithm::trim_copy — Trim.

Synopsis

template<typename SequenceT> 
  SequenceT trim_copy(const SequenceT & Input, 
                      const std::locale & Loc = std::locale());

Description

Remove all leading and trailing spaces from the input. The result is a trimmed copy of the input

Parameters

Input

An input sequence

Loc

A locale used for 'space' classification

Returns: A trimmed copy of the input
Notes: This function provides the strong exception-safety guarantee

Copyright © 2002-2004 Pavol Droba

PrevUpHomeNext