Home | Libraries | People | FAQ | More |
boost::algorithm::nth_finder — "Nth" finder
// In header: <boost/algorithm/string/finder.hpp> template<typename RangeT> unspecified nth_finder(const RangeT & Search, int Nth); template<typename RangeT, typename PredicateT> unspecified nth_finder(const RangeT & 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 |