C++中如何split字符串

#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");

}

效果图:

C++中如何split字符串

你可能感兴趣的:(split)