Qt下一个 QString 实现split()性能。和std::string未实现它的。STL也未实现。只有自己可以写一。
#include#include using namespace std; vector split(string strtem,char a) { vector strvec; string::size_type pos1, pos2; pos2 = strtem.find(a); pos1 = 0; while (string::npos != pos2) { strvec.push_back(strtem.substr(pos1, pos2 - pos1)); pos1 = pos2 + 1; pos2 = strtem.find(a, pos1); } strvec.push_back(strtem.substr(pos1)); return strvec; }
版权声明:本文博主原创文章。博客,未经同意不得转载。