【找茬】split string - 力为的技术博客 - C++博客
问题:
把以下字符串按照空格splitstring str=" 50 4 13.900 0.400 -0.600";
“方案”一:
用boost::split#include "boost/algorithm/string.hpp"std::vector<string> arrItem;
boost::split(arrItem, str, boost::is_any_of(" "));
使用以上代码不能达到目的。问题出在哪里?