admin 管理员组

文章数量: 887041


2024年1月18日发(作者:discuz模板手机版)

std::vector split(const std::string &str,const std::string &pattern){ //const char* convert to char* char * strc = new char[strlen(str.c_str())+1]; strcpy(strc, str.c_str()); std::vector resultVec; char* tmpStr = strtok(strc, pattern.c_str()); while (tmpStr != NULL) { _back(std::string(tmpStr)); tmpStr = strtok(NULL, pattern.c_str()); }

delete[] strc;

return resultVec;};


本文标签: 模板 手机 作者