Converti String in Int Array in C++
-
Usa le funzioni
std::getline
estd::stoi
per convertirestring
inint
Array in C++ -
Usa le funzioni
std::string::find
estd::stoi
per convertirestring
inint
Array in C++ -
Usa le funzioni
std::copy
estd::remove_if
per convertirestring
in arrayint
in C++
Questo articolo illustrerà più metodi su come convertire una stringa in un array int in C++.
Usa le funzioni std::getline
e std::stoi
per convertire string
in int
Array in C++
std::stoi
è usato per convertire valori di stringa in un intero con segno e richiede un argomento obbligatorio di tipo std::string
. Facoltativamente, la funzione può richiedere 2 argomenti aggiuntivi, il primo dei quali può essere utilizzato per memorizzare l’indice dell’ultimo carattere non convertito. Il terzo argomento può facoltativamente specificare la base numerica dell’input. Nota che assumiamo i numeri separati da virgole come stringa di input come il file .csv
. Quindi, usiamo la funzione getline
per analizzare ogni numero e poi passare il valore a stoi
. Memorizziamo anche ogni numero nel contenitore std::vector
chiamando il metodo push_back
ad ogni iterazione.
#include <iostream>
#include <iterator>
#include <sstream>
#include <vector>
using std::cerr;
using std::cout;
using std::endl;
using std::stoi;
using std::string;
using std::stringstream;
using std::vector;
int main(int argc, char *argv[]) {
string text = "125, 44, 24, 5543, 111";
vector<int> numbers;
int num;
stringstream text_stream(text);
string item;
while (std::getline(text_stream, item, ',')) {
numbers.push_back(stoi(item));
}
for (auto &n : numbers) {
cout << n << endl;
}
exit(EXIT_SUCCESS);
}
Produzione:
125
44
24
5543
111
Usa le funzioni std::string::find
e std::stoi
per convertire string
in int
Array in C++
In alternativa, possiamo utilizzare un metodo integrato find
della classe std::string
per recuperare la posizione del delimitatore virgola e quindi chiamare la funzione substr
per ottenere il numero. Quindi, il risultato substr
viene passato allo stoi
che a sua volta è incatenato al metodo push_back
per memorizzare il numero nel vettore
. Nota che c’è la riga dopo il cicli while
che è necessaria per estrarre l’ultimo numero nella sequenza.
#include <iostream>
#include <iterator>
#include <sstream>
#include <vector>
using std::cerr;
using std::cout;
using std::endl;
using std::stoi;
using std::string;
using std::stringstream;
using std::vector;
int main(int argc, char *argv[]) {
string text = "125, 44, 24, 5543, 111";
vector<int> numbers;
size_t pos = 0;
while ((pos = text.find(',')) != string::npos) {
numbers.push_back(stoi(text.substr(0, pos)));
text.erase(0, pos + 1);
}
numbers.push_back(stoi(text.substr(0, pos)));
for (auto &n : numbers) {
cout << n << endl;
}
exit(EXIT_SUCCESS);
}
Produzione:
125
44
24
5543
111
Usa le funzioni std::copy
e std::remove_if
per convertire string
in array int
in C++
Un altro metodo per estrarre gli interi è usare l’algoritmo std::copy
insieme a std::istream_iterator
e std::back_inserter
. Questa soluzione memorizza i valori della stringa in un vettore
e li invia al flusso cout
, ma si può facilmente aggiungere la funzione std::stoi
per convertire ogni elemento nel valore int
. Tieni presente, tuttavia, che il seguente codice di esempio memorizza solo i numeri come valori stringa.
#include <iostream>
#include <iterator>
#include <sstream>
#include <vector>
using std::cerr;
using std::cout;
using std::endl;
using std::stoi;
using std::string;
using std::stringstream;
using std::vector;
int main(int argc, char *argv[]) {
string text = "125, 44, 24, 5543, 111";
vector<string> nums;
std::istringstream iss(text);
copy(std::istream_iterator<string>(iss), std::istream_iterator<string>(),
std::back_inserter(nums));
for (auto &n : nums) {
n.erase(std::remove_if(n.begin(), n.end(), ispunct), n.end());
cout << n << endl;
}
exit(EXIT_SUCCESS);
}
Produzione:
125
44
24
5543
111
Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.
LinkedIn Facebook