Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How do you convert Byte Array to Hexadecimal String, and vice versa, in C#?

Can we convert a hex string to a byte array using a built-in function in C# or do I have to make a custom method for this?

share|improve this question

marked as duplicate by Scott Chamberlain, James Allardice, Daniel Fischer, Conrad Frix, Richard J. Ross III Jun 19 '12 at 15:23

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 78 down vote accepted

Here's a nice fun LINQ example.

public static byte[] StringToByteArray(string hex) {
    return Enumerable.Range(0, hex.Length)
                     .Where(x => x % 2 == 0)
                     .Select(x => Convert.ToByte(hex.Substring(x, 2), 16))
                     .ToArray();
}
share|improve this answer
46  
Good heavens!! Do you realize how INEFFICIENT that is??? Sure, it's fun, but LINQ is overused for things that should be done otherwise! LINQ code requires .NET 3.5 and requires referencing System.Core (which might otherwise not be needed). See the duplicate article for efficient solutions. – Kevin P. Rice May 31 '11 at 7:58
9  
It's probably meant to be fun, not efficient – Karsten Sep 5 '11 at 9:27
1  
This answer at least has the added benefit of being able to compile. keyAsBytes is undefined in the other one. – Ronnie Overby Jan 28 '12 at 2:41
3  
a bit more efficient and elegant IMO: Enumerable.Range(0, hex.Length/2) .Select(x => Byte.Parse(hex.Substring(2*x, 2), NumberStyles.HexNumber)) .ToArray(); Drop the where clause and use Byte.Parse() – 3D-Grabber Mar 14 '12 at 14:24
Good God. -1 for even suggesting LINQ to do something like this. – Stargazer712 Apr 2 at 15:08
public static byte[] ConvertHexStringToByteArray(string hexString)
{
    if (hexString.Length % 2 != 0)
    {
        throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, "The binary key cannot have an odd number of digits: {0}", hexString));
    }

    byte[] HexAsBytes = new byte[hexString.Length / 2];
    for (int index = 0; index < HexAsBytes.Length; index++)
    {
        string byteValue = hexString.Substring(index * 2, 2);
        HexAsBytes[index] = byte.Parse(byteValue, NumberStyles.HexNumber, CultureInfo.InvariantCulture);
    }

    return HexAsBytes; 
}
share|improve this answer
Should it not be "for (int index = 0; index < HexAsBytes.Length; index++)" ? – Noli Jun 13 '12 at 13:27

I did some research and found out that byte.Parse is even slower than Convert.ToByte. The fastest conversion I could come up with uses approximately 15 ticks per byte.

    public static byte[] StringToByteArrayFastest(string hex) {
        if (hex.Length % 2 == 1)
            throw new Exception("The binary key cannot have an odd number of digits");

        byte[] arr = new byte[hex.Length >> 1];

        for (int i = 0; i < hex.Length >> 1; ++i)
        {
            arr[i] = (byte)((GetHexVal(hex[i << 1]) << 4) + (GetHexVal(hex[(i << 1) + 1])));
        }

        return arr;
    }

    public static int GetHexVal(char hex) {
        int val = (int)hex;
        //For uppercase A-F letters:
        return val - (val < 58 ? 48 : 55);
        //For lowercase a-f letters:
        //return val - (val < 58 ? 48 : 87);
        //Or the two combined, but a bit slower:
        //return val - (val < 58 ? 48 : (val < 97 ? 55 : 87));
    }

// also works on .NET Micro Framework where (in SDK4.3) byte.Parse(string) only permits integer formats.

share|improve this answer
It would be better if the GetHexVal function is inlined instead. – George Apr 8 '12 at 13:09
I tried that, but somehow this is slightly faster. Maybe because the difference between the Heap and the Stack. – CainKellye Apr 23 '12 at 14:24
Hmmm strange. Well I tested it with VB.NET 2.0 (2010 compiler) x86 using its if() ternary operator and it was definitely faster inlined. And in general, shouldn't IL operators be faster than any function calls? – George Apr 24 '12 at 13:40
You can check my implementation (one of the answers below) – George Apr 24 '12 at 13:44
to answer that you would need to know a lot about how the compiler makes its decisions about automatic inlining – John Nicholas May 17 '12 at 15:02
show 1 more comment

I think this may work.

public static byte[] StrToByteArray(string str)
    {
        Dictionary<string, byte> hexindex = new Dictionary<string, byte>();
        for (byte i = 0; i < 255; i++)
            hexindex.Add(i.ToString("X2"), i);

        List<byte> hexres = new List<byte>();
        for (int i = 0; i < str.Length; i += 2)            
            hexres.Add(hexindex[str.Substring(i, 2)]);

        return hexres.ToArray();
    }
share|improve this answer

Here's my take on it using VB.NET without LINQ so it is faster:

Friend Function HexStringToByteArray(aHex As String) As Byte()
        If String.IsNullOrEmpty(aHex) Then Return New Byte() {}
        Dim hexl As Integer = aHex.Length
        If hexl - (hexl \ 2) * 2 <> 0 Then Throw New Exception("Hex string cannot have an odd number of digits.") 'this is instead of MOD, as in all my tests a-(a\b)*b is faster than a mod b
        Dim hexar() As Char = aHex.ToCharArray 'this is also faster than going after characters using Stirng(index)
        Dim ar((hexl >> 1) - 1) As Byte
        For i As Integer = 0 To ar.Length - 1
            Dim ti As Integer = i << 1
            Dim v1 As Integer = AscW(hexar(ti))
            Dim v2 As Integer = AscW(hexar(ti + 1))
            v1 -= If(v1 < 58, 48, If(v1 < 97, 55, 87))
            v2 -= If(v2 < 58, 48, If(v2 < 97, 55, 87))
            v1 <<= 4
            ar(i) = CByte(v1 + v2)
        Next
        Return ar
    End Function
share|improve this answer

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