Hello,
I'm using boost library to match substrings in a text. to iterate over results i need to use regex_iterator (see http://www.boost.org/doc/libs/1_42_0/libs/regex/doc/html/boost_regex/ref/regex_iterator.html)
that's the only usage example i have found, but it's not clear for me (i don't understand the callback).
could someone familiar with boost post a usage example of that function ?
let's assume that my input text is
"Hello everybody this is a sentense
Bla bla 14 .. yes
date 04/15/1986
"
i want to get "Hello" "everybody" "this" "is" "a" "sentense" "bla" "yes" "date"
.
thanks.