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 an older version of Boost and was released in 2013. The current version is 1.91.0.
boost::algorithm::nth_finder — "Nth" finder
template<typename ContainerT> Â Â unspecified nth_finder(const ContainerT & Search, int Nth); template<typename ContainerT, typename PredicateT> Â Â unspecified nth_finder(const ContainerT & Search, int Nth, PredicateT Comp);
Construct the nth_finder . The finder searches for the n-th (zero-indexed) occurrence of the string in a given input. The result is given as an iterator_range delimiting the match.
| Parameters: |
|
||||
| Returns: | An instance of the |
| Copyright © 2002-2004 Pavol Droba |