#include #include #include #include #include #include int main() { std::string s = "Hello,How,Are,You,Today"; boost::tokenizer<> tok(s); std::vector v(tok.begin(), tok.end()); copy(v.begin(), v.end(), std::ostream_iterator(std::cout, ".")) std::cout << '\n'; }