首页 > 其他 > 详细

字符串分割

时间:2019-12-12 09:15:43      阅读:120      评论:0      收藏:0      [点我收藏+]
 1 std::vector<std::string> split(const std::string &input) {
 2     const std::string alpha {"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"};
 3     std::vector<std::string> result;
 4     size_t begin = 0;
 5     while (begin < input.size()) {
 6         if ((begin = input.find_first_of(alpha, begin)) == std::string::npos) {
 7             break;
 8         }
 9         size_t end;
10         if ((end = input.find_first_not_of(alpha, begin)) == std::string::npos) {
11             result.push_back(input.substr(begin));
12             break;
13         }
14         result.push_back(input.substr(begin, end - begin));
15         begin = end + 1;
16     }
17     return result;
18 }

字符串分割

原文:https://www.cnblogs.com/ren-yu/p/12026756.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!