“split string oleh pembatas CPP” Kode Jawaban

Menerapkan fungsi split di 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

split string oleh pembatas 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

Jawaban yang mirip dengan “split string oleh pembatas CPP”

Pertanyaan yang mirip dengan “split string oleh pembatas CPP”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya