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

Function template first_finder
PrevUpHomeNext

Function template first_finder

boost::first_finder — "First" finder

Synopsis

// In header: <boost/algorithm/string/finder.hpp>


template<typename RangeT> unspecified first_finder(const RangeT & Search);

Description

Construct the first_finder. The finder searches for the first occurrence of the string in a given input. The result is given as an iterator_range delimiting the match.

Parameters:

Search

A substring to be searched for.

Returns:

An instance of the first_finder object


PrevUpHomeNext