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.
|
|
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. |
|||
|
|
|
|
You want strtol. The page explains it well. |
||
|
|
|
|
Try this:
|
||
|
|
|
|
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 |
||
|
|
|
|
@Eric
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. |
||
|
|
|
|
For larger Hex strings like in the example I needed to use strtoul. |
||
|
|
|
|
If you don't have the stdlib then you have to do it manually.
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. |
||
|
|
|
|
@Eric
Well, I'm no C guru, but here's what I came up with:
I originally had more bitmasking going on instead of comparisons, but I seriously doubt bitmasking is any faster than comparison on modern hardware. |
||||||
|