
16 Dec
2008
16 Dec
'08
10:28 a.m.
"Eric Niebler"
The regex iterators only give non-overlapping results. If you want to find overlapping results, you can use the regex_search() algorithm iteratively, specifying the start position as what[0].first+1 instead of what[0].second.
Thanks, Eric. That's what I needed.