码迷,mamicode.com
首页 > 编程语言 > 详细

C++中如何split字符串(转)

时间:2014-07-19 23:13:54      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   2014   

#include <iostream>
#include <sstream>
#include <string>
using namespace std;

int main()
{
    string s("Somewhere down the road");
    istringstream iss(s);
        
     while (iss)
    {
        string sub;
        iss >> sub;
        cout << "Substring: " << sub << endl;
    }
    

    system("pause");
}

效果图:

bubuko.com,布布扣

C++中如何split字符串(转),布布扣,bubuko.com

C++中如何split字符串(转)

标签:style   blog   http   color   os   2014   

原文地址:http://www.cnblogs.com/sweetculiji/p/3855545.html

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