Home | Libraries | People | FAQ | More |
boost::algorithm::iter_split — Split find algorithm.
// In header: <boost/algorithm/string/iter_find.hpp> template<typename SequenceSequenceT, typename RangeT, typename FinderT> SequenceSequenceT & iter_split(SequenceSequenceT & Result, RangeT & Input, FinderT Finder);
This algorithm executes a given finder in iteration on the input, until the end of input is reached, or no match is found. Iteration is done using built-in find_iterator
, so the real searching is performed only when needed. Each match is used as a separator of segments. These segments are then returned in the result.
Note | |
---|---|
Prior content of the result will be overwritten. |
Parameters: |
|
||||||
Returns: |
A reference to the result |