引用的头文件 <boost/algorithm/string.hpp>
boost::split()函数用于切割string字符串,将切割之后的字符串放到一个std::vector<std::string> 之中;
有4个参数:
以boost::split(type, select_list, boost::is_any_of(","), boost::token_compress_on);
(1)、type类型是std::vector<std::string>,用于存放切割之后的字符串
(2)、select_list:传入的字符串,可以为空。
(3)、boost::is_any_of(","):设定切割符为,(逗号)
(4)、 boost::token_compress_on:将连续多个分隔符当一个,默认没有打开,当用的时候一般是要打开的。
结果:
根据结果可以看出:
split()切割的string为空时,是可以切割出来一个空字符的。
另一种情况,如果string中有连续的,,时的处理如下:
std::string s1("hash,project,,string");std::vector<std::string> split_string;boost::split(split_string, s1, boost::is_any_of(","), boost::token_compress_on);std::string err("size=");err += std::to_string(split_string.size());LogErr(WARNING_LEVEL, ER_LOG_PRINTF_MSG, err.c_str());for (std::string s : split_string) {std::string ans(s);LogErr(WARNING_LEVEL, ER_LOG_PRINTF_MSG, ans.c_str());}
结果:
size=3
hash
project
string
总结:boost里面考虑的异常情况还是比较多的,还是比较优秀的开发工具