convert string to integer c++ using stringstream code example
Example 1: convert stirng to int c++
int thing = std::stoi(string);
Example 2: string to int c++
// Both functions work identically though you'll need to use "#include <string>"
atoi( str.c_str() );
stoi( str );