vote up 2 vote down star

Can I persuade operator>> in C++ to read both a hex value AND and a decimal value? The following program demonstrates how reading hex goes wrong. I'd like the same istringstream to be able to read both hex and decimal.

#include <iostream>
#include <sstream>

int main(int argc, char** argv)
{
    int result = 0;
    // std::istringstream is("5"); // this works
    std::istringstream is("0x5"); // this fails

    while ( is.good() ) {
        if ( is.peek() != EOF )
            is >> result;
        else
            break;
    }

    if ( is.fail() )
        std::cout << "failed to read string" << std::endl;
    else
        std::cout << "successfully read string" << std::endl;

    std::cout << "result: " << result << std::endl;
}
flag

3 Answers

vote up 3 vote down check

include iomanip and then use std::setbase(0)

is >> std::setbase(0) >> result;

link|flag
vote up -1 vote down

0x is C/C++ specific prefix. A hex number is just digits like a decimal one. You'll need to check for presence of those characters then parse appropriately.

link|flag
vote up 11 vote down

You need to tell C++ what your base is going to be.

Want to parse a hex number? Change your "is >> result" line to:

is >> std::hex >> result;

Putting a std::dec indicates decimal numbers, std::oct indicates octal.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.