boost字符串分割

103 阅读1分钟



char  chs[256]={1,2,3,4,5,6,7,8};

std::vector<std::string> v;

boost::algorithm::split(v, chs, boost::is_any_of((" ,,")));

\