以逗号为分隔符对字符串进行分隔

以逗号为分隔符对字符串进行分隔_第1张图片以逗号为分隔符对字符串进行分隔_第2张图片


源代码(可直接复制)

#include 
#include 
#include 
#include 
#include       //内存string io流

using namespace std;


int main ()
{

  string ss="[email protected],王黎明,(单位地址)乌市公园北街 3 "
           "号皓翔文苑小区 1 号综合楼 7 层 ,165,2601,0991-5823066,347.30";


  stringstream sstr(ss);   //stringstream流类型,可以从string中读取数据 也可以向string中写入数据

  vector stu;

  string token;


  while(getline(sstr, token, ','))    //getline函数进行字符串的提取
  {
      stu.push_back(token);
  }


  for(auto &i:stu)
      cout<

你可能感兴趣的:(以逗号为分隔符对字符串进行分隔)