R&D data and information for boost

res and tool

split

string resultStr;
vector originStr;
//按照逗号 ","将resultStr进行分割,分割完毕后的向量赋值到originStr
boost::split(originStr, resultStr, boost::is_any_of(INFORMATION_FLAG), boost::token_compress_on); //将连续的字符串切分为多个独立的字符串,并形成字符串向量。

你可能感兴趣的:(R&D data and information for boost)