boost字符串分割 303103757 2022-10-15 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((" ,,"))); \