vote up 2 vote down star
1

I want to convert a hex string to a 32 bit signed integer in C++.

So, for example, I have the hex string "fffefffe". The binary representation of this is 11111111111111101111111111111110. The signed integer representation of this is: -65538.

How do I do this conversion in C++? This also needs to work for non-negative numbers. For example, the hex string "0000000A", which is 00000000000000000000000000001010 in binary, and 10 in decimal.

flag

53% accept rate
Note. You will only get -65538 for systems where sizeof(int) == 4 – Martin York Jul 1 at 18:39
@Martin York, He didn't mention int. "32 bit signed integer" could be int32_t or __int32 etc. – Kirill V. Lyadvinsky Jul 1 at 18:47

4 Answers

vote up 5 vote down check

use std::stringstream

unsigned int x;   
std::stringstream ss;
ss << std::hex << "fffefffe";
ss >> x;

the following example produces -65538 as its result:

#include <sstream>
#include <iostream>

int main() {
    unsigned int x;   
    std::stringstream ss;
    ss << std::hex << "fffefffe";
    ss >> x;
    // output it as a signed type
    std::cout << static_cast<int>(x) << std::endl;
}

EDIT: It appears that since lexical_cast<> is defined to have stream conversion semantics. Sadly, streams don't understand the "0x" notation. So both the boost::lexical_cast and my hand rolled one don't deal well with hex strings. The above solution which manually sets the input stream to hex will handle it just fine.

Boost has some stuff to do this as well, which has some nice error checking capabilities as well. You can use it like this:

try {
    unsigned int x = lexical_cast<int>("0x0badc0de");
} catch(bad_lexical_cast &) {
    // whatever you want to do...
}

If you don't feel like using boost, here's a light version of lexical cast which does no error checking:

template<typename T2, typename T1>
inline T2 lexical_cast(const T1 &in) {
    T2 out;
    std::stringstream ss;
    ss << in;
    ss >> out;
    return out;
}

which you can use like this:

// though this needs the 0x prefix so it knows it is hex
unsigned int x = lexical_cast<unsigned int>("0xdeadbeef");
link|flag
When I use that method, I end up with an integer value of 152144602 – Clayton Jul 1 at 18:03
Remove unsigned, and it should work as advertised. – jmanning2k Jul 1 at 18:08
@jmanning2k, yea, it's weird that both boost and my lexical_cast barf on hex strings (even with the 0x prefix) if i don't put std::hex in the string. – Evan Teran Jul 1 at 18:11
vote up 0 vote down

I had the same problem today, here's how I solved it so I could keep lexical_cast<>

typedef unsigned int    uint32;
typedef signed int      int32;

class uint32_from_hex   // For use with boost::lexical_cast
{
    uint32 value;
public:
    operator uint32() const { return value; }
    friend std::istream& operator>>( std::istream& in, uint32_from_hex& outValue )
    {
        in >> std::hex >> outvalue.value;
    }
};

class int32_from_hex   // For use with boost::lexical_cast
{
    uint32 value;
public:
    operator int32() const { return static_cast<int32>( value ); }
    friend std::istream& operator>>( std::istream& in, int32_from_hex& outValue )
    {
        in >> std::hex >> outvalue.value;
    }
};

uint32 material0 = lexical_cast<uint32_from_hex>( "0x4ad" );
uint32 material1 = lexical_cast<uint32_from_hex>( "4ad" );
uint32 material2 = lexical_cast<uint32>( "1197" );

int32 materialX = lexical_cast<int32_from_hex>( "0xfffefffe" );
int32 materialY = lexical_cast<int32_from_hex>( "fffefffe" );
// etc...

(Found this page when I was looking for a less sucky way :-)

Cheers, A.

link|flag
vote up 2 vote down

Working example with strtoul will be:

#include <cstdlib>
#include <iostream>
using namespace std;

int main() { 
    string s = "fffefffe";
    char * p;
    long n = strtoul( s.c_str(), & p, 16 ); 
    if ( * p != 0 ) {  
    	cout << "not a number" << endl;
    }    else {  
    	cout << n << endl;
    }
}

strtol converts string to long. On my computer numeric_limits<long>::max() gives 0x7fffffff. Obviously that 0xfffefffe is greater than 0x7fffffff. So strtol returns MAX_LONG instead of wanted value. strtoul converts string to unsigned long that's why no overflow in this case.

Ok, strtol is considering input string not as 32-bit signed integer before convertation. Funny sample with strtol:

#include <cstdlib>
#include <iostream>
using namespace std;

int main() { 
    string s = "-0x10002";
    char * p;
    long n = strtol( s.c_str(), & p, 16 ); 
    if ( * p != 0 ) {  
    	cout << "not a number" << endl;
    }    else {  
    	cout << n << endl;
    }
}

The code above prints -65538 in console.

link|flag
vote up 3 vote down

For a method that works with both C and C++, you might want to consider using the standard library function strtol().

#include <cstdlib>
#include <iostream>
using namespace std;

int main() {
    string s = "abcd";
    char * p;
    long n = strtol( s.c_str(), & p, 16 );
    if ( * p != 0 ) {
    	cout << "not a number" << endl;
    }
    else {
    	cout << n << endl;
    }
}
link|flag
I don't often equire the reason for downvotes, but in this case I will - what's wrong with the above code? – Neil Butterworth Jul 1 at 18:15
I see nothing wrong with this code either. +1 to bring balance to world :-P. – Evan Teran Jul 1 at 18:17
You should use strtoul not strtol. There will be + overflow when using strtol. With strtoul there will be no overflow and returned value will be converted to long to produce correct result (-65538). So your answer almost right :) – Kirill V. Lyadvinsky Jul 1 at 18:36
+1. Because strtol (or strtoul) faster than using stringstream. – Kirill V. Lyadvinsky Jul 1 at 18:43
I'd be interested if you expanded on your remarks on overflow (something I always have a problem understanding), possibly in a separate answer? – Neil Butterworth Jul 1 at 19:09
show 1 more comment

Your Answer

Get an OpenID
or

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