This is probably a common question over the Internet, but I couldn't find an answer that neatly explains how you can convert a byte array to a hexadecimal string, and vice versa.
Any takers?
feedback
|
|
Either:
or:
There are even more variants of doing it, for example here. The reverse conversion would go like this:
| |||||||||||||||||||
feedback
|
|
There's a class called SoapHexBinary that does exactly what you want.
| |||||||||||||
feedback
|
Performance AnalysisI ran each of the various conversion methods through some crude
Byte manipulation, while harder to read, is definitely the fastest approach. Testing CodeFeel free to play with the testing code I used. A version is included here but feel free to clone the BitBucket repo and add your own methods. Please submit a pull request if you find anything interesting or want to help improve the testing framework it uses.
Update (2010-01-13)Added Waleed's answer to analysis. Quite fast. Update (2011-10-05)Added Update (2012-02-05)Test repo includes more variants such as Update (2012-04-03)Added Mykroft's | |||||||||||||||
feedback
|
|
If you want more flexibility than
Or, if you're using .NET 4.0:
(The latter from a comment on the original post) | |||||||||||||||
feedback
|
|
I just encountered the very same problem today and I came across this code:
Source: http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/3928b8cb-3703-4672-8ccd-33718148d1e3/ (see the post by PZahra) I modified the code a little to remove the 0x prefix I did some performance testing to the code and it was almost 8 times faster than using BitConverter.ToString() (the fastest according to patridge's post) | |||||||||
feedback
|
|
You can use BitConverter.ToString Method:
Output:
More Info: http://msdn.microsoft.com/en-us/library/3a733s97.aspx | |||||
feedback
|
|
This is a great post. I like Waleed's solution. I haven't run it through patridge's test but it seems to be quite fast. I also needed the reverse process, converting a hex string to a byte array, so I wrote it as a reversal of Waleed's solution. Not sure if it's any faster than Tomalak's original solution. Again, I did not run the reverse process through patridge's test either.
| |||||||
feedback
|
|
This problem could also be solved using a look-up table, this would require a small amount of static memory for both encoder and decoder, this method will however be fast:
My solution uses 1024B for the encoding table, and 256B for decoding. Decoding
Encoding
Comparison
* this solution NoteDuring decoding IOException and IndexOutOfRangeException could occur (if a character has a too high value > 256). Methods for de/encoding streams or arrays should be implemented, this is just a proof of concept. | |||
|
feedback
|
|
From Microsoft's developers, a nice, simple conversion:
While the above is clean an compact, performance junkies will scream about it using enumerators. You can get peak performance with an improved version of Tomolak's original answer:
This is the fastest of all the routines I've seen posted here so far. Don't just take my word for it... performance test each routine and inspect it's IL code for yourself. | |||
|
feedback
|
|
And to steal Tomalak's thunder... EXTENSION METHODS :) [disclaimer: completely untested code, btw .. just thought i'd add a quick post]
etc.. use either of his three solutions (with the last one being an extension method on a string) | |||
|
feedback
|
|
Not to pile on to the many answers here, but I found a fairly optimal (~4.5x better than accepted), straightforward implementation of the hex string parser. First, output from my tests (first batch is my impl.):
The base64 and 'BitConverter'd' lines are there to test for correctness. Note that they are equal. The implementation:
I tried some stuff w/ (I concede that this answers half the question. I felt that the string->byte[] conversion was underrepresented, while the byte[]->string angle seems to be well covered. Thus, this answer.) | ||||
feedback
|
|
And for inserting into an SQL string (if you're not using command parameters):
| |||
|
feedback
|
|
In terms of speed, this seems to be better than anything here:
| |||
|
feedback
|
|
Why make it complex. This is simple in visual studio.net 2008: C#:
VB:
| |||
|
feedback
|
|
If performance matters, here's an optimized solution:
It's about 2.5 times faster that | |||
|
feedback
|
|
Yet another variation for diversity:
| |||
|
feedback
|
|
I did not get the code you suggested to work, Olipro. I did, however have some success by taking some hints from Waleeds code and hammering this together. It's ugly as hell but it seems to work and performs at 1/3 of the time compared to the others according to my tests (using patridges testing mechanism). Depending on input size. Switching around the ?:s to separate out 0-9 first would probably yield a slightly faster result since there are more numbers than letters.
| ||||
|
feedback
|
|
if you want to get the "4x speed increase" reported by wcoenen, then if it's not obvious: replace you could also take it a step further and get rid of the | ||||
|
feedback
|
|
For performance I would go with drphrozens solution. A tiny optimization for the decoder could be to use a table for either char to get rid of the "<< 4". Clearly the two method calls are costly. If some kind of check is made either on input or output data (could be CRC, checksum or whatever) the Using
This is just off the top of my head and has not been tested or benchmarked. | |||
|
feedback
|
|
I suspect the speed of this will knock the socks off most of the other tests...
| |||
feedback
|
|
This works to go from string to byte array...
| |||
|
feedback
|