“CPP -Split -Zeichenfolge nach Speicherplatz” Code-Antworten

CPP -Split -Zeichenfolge nach Speicherplatz

std::vector<std::string> string_split(const std::string& str) {
	std::vector<std::string> result;
	std::istringstream iss(str);
	for (std::string s; iss >> s; )
		result.push_back(s);
	return result;
}
Blushing Barracuda

C Split String durch Platz in das Array

Astringstream associates a string object with a stream allowing you to 
read from the string as if it were a stream (like cin). To use stringstream, 
we need to include sstream header file. 
The stringstream class is extremely useful in parsing input.

in the cp when u need to remove spaces from the string and store it into the 
vector or other type  of data structure at that it will be your 
first choice out there.
Xerothermic Xenomorph

Zeichenfolge, die durch Space C geteilt wurde

// Extract the first token
char * token = strtok(string, " ");
// loop through the string to extract all other tokens
while( token != NULL ) {
  printf( " %s\n", token ); //printing each token
  token = strtok(NULL, " ");
}
return 0;
Davido Tonante

Ähnliche Antworten wie “CPP -Split -Zeichenfolge nach Speicherplatz”

Fragen ähnlich wie “CPP -Split -Zeichenfolge nach Speicherplatz”

Weitere verwandte Antworten zu “CPP -Split -Zeichenfolge nach Speicherplatz” auf C++

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen