vote up 3 vote down star

In C what is the most efficient way to convert a hexadecimal value to its base 10 value?

For example, if I have FFFFFFFE the result would be 4294967294.

flag

7 Answers

vote up 8 vote down check

You want strtol. The page explains it well.

link|flag
vote up 0 vote down

If you don't have the stdlib then you have to do it manually.

unsigned long hex2int(char *a, unsigned int len)
{
    int i;
    unsigned long val = 0;

    for(i=0;i<len;i++)
       if(a[i] <= 57)
    	val += (a[i]-48)*(1<<(4*(len-1-i)));
       else
    	val += (a[i]-55)*(1<<(4*(len-1-i)));
    return val;
}

Note: This code assumes uppercase A-F. It does not work if len is beyond your longest integer 32 or 64bits, and there is no error trapping for illegal hex characters.

link|flag
vote up 2 vote down

Why is a code solution that works getting voted down? Sure, it's ugly ...

Perhaps because as well as being ugly it isn't educational and doesn't work. Also, I suspect that like me, most people don't have the power to edit at present (and judging by the rank needed - never will).

The use of an array can be good for efficiency, but that's not mentioned in this code. It also takes no account of upper and lower case so it does not work for the example supplied in the question. FFFFFFFE

link|flag
vote up 0 vote down

For larger Hex strings like in the example I needed to use strtoul.

link|flag
vote up 0 vote down

@Eric

I was actually hoping to see a C wizard post something really cool, sort of like what I did but less verbose, while still doing it "manually".

Well, I'm no C guru, but here's what I came up with:

unsigned int parseHex(const char * str)
{
    unsigned int val = 0;
    char c;

    while(c = *str++)
    {
        val <<= 4;

        if (c >= '0' && c <= '9')
        {
            val += c & 0x0F;
            continue;
        }

        c &= 0xDF;
        if (c >= 'A' && c <= 'F')
        {
            val += (c & 0x07) + 9;
            continue;
        }

        errno = EINVAL;
        return 0;
    }

    return val;
}

I originally had more bitmasking going on instead of comparisons, but I seriously doubt bitmasking is any faster than comparison on modern hardware.

link|flag
Four complaints: 1) It does not compile. 2) Id does not handle lower case 3) It does not work (A => 1). 4) Invalid characters are just ignored!. Did you test it? – Martin York Sep 26 '08 at 18:35
Did you read it? "I didn't actually compile this, so I could have made some pretty big mistakes." So no, I didn't test it. – Derek Park Sep 26 '08 at 18:46
There you go. I patched it up. For the record, it already handled lower case via the "c &= 0xDF" statement. It was broken in multiple other ways, though. – Derek Park Sep 26 '08 at 19:00
vote up 1 vote down

@Eric

Why is a code solution that works getting voted down? Sure, it's ugly and might not be the fastest way to do it, but it's more instructive that saying "strtol" or "sscanf". If you try it yourself you will learn something about how things happen under the hood.

I don't really think your solution should have been voted down, but my guess as to why it's happening is because it's less practical. The idea with voting is that the "best" answer will float to the top, and while your answer might be more instructive about what happens under the hood (or a way it might happen), it's definitely not the best way to parse hex numbers in a production system.

Again, I don't think there's anything wrong with your answer from an educational standpoint, and I certainly wouldn't (and didn't) vote it down. Don't get discouraged and stop posting just because some people didn't like one of your answers. It happens.

I doubt my answer makes you feel any better about yours being voted down, but I know it's especially not fun when you ask why something's being voted down and no one answers.

link|flag
vote up 3 vote down

Try this:

#include <stdio.h>
main()
{
    char s[] = "fffffffe";
    int x;
    sscanf(s, "%x", &x);
    printf("%u\n", x);
}
link|flag

Your Answer

Get an OpenID
or

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