“podzielony ciąg według delimiter cpp” Kod odpowiedzi

Wdrożenie funkcji podzielonej w C

// splits a std::string into vector<string> at a delimiter
vector<string> split(string x, char delim = ' ')
{
    x += delim; //includes a delimiter at the end so last word is also read
    vector<string> splitted;
    string temp = "";
    for (int i = 0; i < x.length(); i++)
    {
        if (x[i] == delim)
        {
            splitted.push_back(temp); //store words in "splitted" vector
            temp = "";
            i++;
        }
        temp += x[i];
    }
    return splitted;
}
master._.mind

podzielony ciąg według delimiter cpp

// C++ program to understand the use of getline() function
  
#include <bits/stdc++.h>
using namespace std;
  
int main()
{
    string S, T;
  
    getline(cin, S);
  
    stringstream X(S);
  
    while (getline(X, T, ' ')) {
        cout << T << endl;
    }
  
    return 0;
}
Jon TMCF

Odpowiedzi podobne do “podzielony ciąg według delimiter cpp”

Pytania podobne do “podzielony ciąg według delimiter cpp”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu