C++ Extract int from string using stringstream

32,019

Solution 1

You could make of the validity of stringstream to int conversion:

int main() {

std::stringstream ss;
std::string input = "a b c 4 e";
ss << input;
int found;
std::string temp;

while(std::getline(ss, temp,' ')) {
    if(std::stringstream(temp)>>found)
    {
        std::cout<<found<<std::endl;
    }
}
return 0;
}

Solution 2

While your question states that you wish to

get a string using getline and checks it for an int

using stringstream, it's worth noting that you don't need stringstream at all. You only use stringstreams when you want to do parsing and rudimentary string conversions.

A better idea would be to use functions defined by std::string to find if the string contains numbers as follows:

#include <iostream>
#include <string>

int main() {
    std::string input = "a b c 4 e 9879";//I added some more extra characters to prove my point.
    std::string numbers = "0123456789";
    std::size_t found = input.find_first_of(numbers.c_str());

    while (found != std::string::npos) {
        std::cout << found << std::endl;
        found = input.find_first_of(numbers.c_str(), found+1);
    }

    return 0;
}

And then perform the conversions.

Why use this? Think about happens if you use a stringstream object on something like the following:

"abcdef123ghij"

which will simply be parsed and stored as a regular string.

Share:
32,019

Related videos on Youtube

Megan
Author by

Megan

Updated on February 06, 2020

Comments

  • Megan
    Megan about 4 years

    I am trying to write a short line that gets a string using getline and checks it for an int using stringstream. I am having trouble with how to check if the part of the string being checked is an int. I've looked up how to do this, but most seem to throw exceptions - I need it to keep going until it hits an int.

    Later I will adjust to account for a string that doesn't contain any ints, but for now any ideas on how to get past this part?

    (For now, I'm just inputting a test string rather than use getline each time.)

    int main() {
    
        std::stringstream ss;
        std::string input = "a b c 4 e";
    
        ss.str("");
        ss.clear();
    
        ss << input;
    
        int found;
        std::string temp = "";
    
        while(!ss.eof()) {
                ss >> temp;
                // if temp not an int
                        ss >> temp; // keep iterating
                } else {
                        found = std::stoi(temp); // convert to int
                }
        }
    
        std::cout << found << std::endl;
    
        return 0;
    }
    
  • Ic3fr0g
    Ic3fr0g almost 8 years
    Any special why you dont intitalise std::size_t found to 0 in the beginning?
  • jrd1
    jrd1 almost 8 years
    @MayurH: Because find_first_of will always populate the value based on the existence of the character that we're looking for. In that context, initializing it to 0 (while pedantic) would be redundant (and arguably, meaningless).
  • Ic3fr0g
    Ic3fr0g almost 8 years
    Got it. Tried it out myself then realised. :)
  • jrd1
    jrd1 almost 8 years
    @MayurH: Sweet, glad to know! :)
  • Umar Tahir
    Umar Tahir over 3 years
    this code returns index of where digits was found not the actual no
  • jrd1
    jrd1 over 3 years
    @UmarTahir: Thank you for your response. Your comment is accurate that this snippet obtains the index where the digits are found and not the actual number, which was done in consideration of the edge case I described in my answer - i.e. one should consider the case where the string isn't whitespace delimited.