J'ai le code suivant:
std::string str = "abc def,ghi";
std::stringstream ss(str);
string token;
while (ss >> token)
{
printf("%s\n", token.c_str());
}
La sortie est:
abc
def, ghi
Ainsi, l'opérateur stringstream::>>
peut séparer les chaînes par un espace, mais pas par une virgule. Est-il possible de modifier le code ci-dessus pour que je puisse obtenir le résultat suivant?
entrée: "abc, def, ghi"
sortie:
abc
def
ghi
#include <iostream>
#include <sstream>
std::string input = "abc,def,ghi";
std::istringstream ss(input);
std::string token;
while(std::getline(ss, token, ',')) {
std::cout << token << '\n';
}
abc
def
ghi
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main()
{
std::string input = "abc,def, ghi";
std::istringstream ss(input);
std::string token;
size_t pos=-1;
while(ss>>token) {
while ((pos=token.rfind(',')) != std::string::npos) {
token.erase(pos, 1);
}
std::cout << token << '\n';
}
}