tags:

views:

597

answers:

3

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;
}
+12  A: 

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.

nsanders
+4  A: 

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

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

A: 

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.

Dave Hillier