在','C ++中拆分字符串

时间:2017-10-13 09:15:22

标签: c++ string split

我有一个这样的字符串:

17, the day is beautiful , day

。 我想在第一个','中分割这个字符串。 例如,我想要2个字符串。一个用于 17 ,两个 当天很漂亮,一天

1 个答案:

答案 0 :(得分:0)

#include <boost/algorithm/string.hpp>
std::vector<std::string> strs;
boost::split(strs, "17, 132, asdasd, 111", boost::is_any_of(","));