COMMON_FUNC_SPLIT_STRING】的更多相关文章

void SplitString(const std::string& s, std::vector<std::string>& v, const std::string& c) {   std::string::size_type pos1, pos2;   pos2 = s.find(c);   pos1 = 0;   while(std::string::npos != pos2)   {     v.push_back(s.substr(pos1, pos2-p…