$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Dmitry Teslenko (dteslenko_at_[hidden])
Date: 2008-04-14 12:19:48
Hello!
For example I want to split string with single char '\t' delimeter.
According to docs this can be done this way:
std::vector<std::string> options;
std::string sep;
sep += '\t';
boost::split(options, line, boost::is_any_of(sep));
But if I want to use double tab as a delimiter? Is there an
alternative to boost::is_any_of like "boost::just_what_i_say"