C++ 字符串分割

C++ 字符串分割,第1张

/*********************************************************************************
Copyright(C),Your Company
Author:	KimChow
Date: 2021-04-16
Description:C++ 字符串分割
Others:
**********************************************************************************/
#include 
#include 
#include 

using namespace std;

int main() 
{
    string data = "12,2,3,4,5,6";
    stringstream sstr(data);
    string item;

    vector scores(6);
    int i = 0;
    stringstream sStrTemp;

    cout << data << endl;
    while (getline(sstr, item, ','))
    {
        sStrTemp << item;
        sStrTemp >> scores[i];
        sStrTemp.clear();
        i++;
    }
    
    cout << "";

    return 0;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/674460.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-19
下一篇 2022-04-19

发表评论

登录后才能评论

评论列表(0条)

保存