首页 > 代码库 > c++ split 模板实现
c++ split 模板实现
template<typename _Fty> inline void split(const std::string& s, const std::string& delims, _Fty op) { size_t start = 0; size_t last = s.find(delims, start); while (last != std::string::npos) { op(std::move(s.substr(start, last - start))); last = s.find(delims, (start = last + delims.size())); } if (start < s.size()) { op(std::move(s.substr(start))); } } inline void split(const std::string& s, const std::string& delims, std::vector<std::string>& values) { split(s, delims, [&values](std::string&& item) { values.push_back(std::move(item)); } ); } int main(int, char**) { std::vector<std::string> values; split("hello#@ffdsdf#@ffgfdg#@ gdsfd @ af#", "#", values); return 0; }
c++ split 模板实现
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。