Boost logo

Boost Users :

From: Pavol Droba (droba_at_[hidden])
Date: 2008-03-15 16:15:53


Hi,

You may try to use tokenization facilities in string_algo library.
They have no such a limitation. You can tokenize with mutable iterators.

Regards,
Pavol.

Christian Henning wrote:
> Hi there, I would like to use the tokenizer to iterate through a
> string of words and reverse them. Something like this:
>
> string str( " Hello World" );
>
> tokenizer<> tok(str);
> for(tokenizer<>::iterator beg=tok.begin(); beg!=tok.end();++beg)
> {
> reverse( (*beg).begin(), (*beg).end() );
> }
>
>
> Why can't I get a mutable string iterator?
>
> Thanks,
> Christian
> _______________________________________________
> Boost-users mailing list
> Boost-users_at_[hidden]
> http://lists.boost.org/mailman/listinfo.cgi/boost-users
>


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net