字符串分割函数
Posted BlueOceans
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串分割函数相关的知识,希望对你有一定的参考价值。
//字符串分割函数 vector<string> split(string str, string pattern){ vector<string> ret; if (pattern.empty()) return ret; size_t start = 0, index = str.find_first_of(pattern, 0); while (index != str.npos){ if (start != index) ret.push_back(str.substr(start, index - start)); start = index + 1; index = str.find_first_of(pattern, start); } if (!str.substr(start).empty()) ret.push_back(str.substr(start)); return ret; }
以上是关于字符串分割函数的主要内容,如果未能解决你的问题,请参考以下文章