Boost
boost::split
#include <boost/algorithm/string.hpp>
Description: boost::split()函数用于切割string字符串,将切割之后的字符串放到一个std::vector
有4个参数:
boost::split(type, select_list, boost::is_any_of(","), boost::token_compress_on);
(1)、type类型是std::vector
(2)、select_list:传入的字符串,可以为空。
(3)、boost::is_any_of(","):设定切割符为,(逗号)
(4)、 boost::token_compress_on:将连续多个分隔符当一个,默认没有打开,当用的时候一般是要打开的。
Boost
http://chenxindaaa.com/Programming/C-C/C++ Cookbook/Boost/