码迷,mamicode.com
首页 > 其他好文 > 详细

string分割

时间:2019-12-22 11:07:26      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:art   string   using   bst   nbsp   tar   size_type   sep   amp   


#include <string>
#include <vector>
using std::string;  //使用string对象
using std::vector;  //使用vector
 
 
 
void Split(const std::string& src, const std::string& separator, std::vector<std::string>& dest);//函数原型
 
 
void Split(const std::string& src, const std::string& separator, std::vector<std::string>& dest) //字符串分割到数组
{
 
        //参数1:要分割的字符串;参数2:作为分隔符的字符;参数3:存放分割后的字符串的vector向量
 
 string str = src;
 string substring;
 string::size_type start = 0, index;
 dest.clear();
 index = str.find_first_of(separator,start);
 do
 {
  if (index != string::npos)
  {   
   substring = str.substr(start,index-start );
   dest.push_back(substring);
   start =index+separator.size();
   index = str.find(separator,start);
   if (start == string::npos) break;
  }
 }while(index != string::npos);
 
 //the last part
 substring = str.substr(start);
 dest.push_back(substring);
}

string分割

标签:art   string   using   bst   nbsp   tar   size_type   sep   amp   

原文地址:https://www.cnblogs.com/toujizhe/p/12079061.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!