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

I have a file containing some data (for example, "00927E2B112DB958......"). This data is a representation of bytes in ASCII form. The bytes are 8 bit, so 2 ASCII chars map to each byte that needs to go into the final output buffer array.

What is the best way to do this?

EDIT: What I am trying to do is go from a string that looks like "00DFFF" to a byte array of {0x00, 0xDF, 0xFF}, for example. I guess this wasn't clear.

Thanks!

share|improve this question
1  
it's an ASCII representation of Hex that must be converted to real bytes in an array. – chris12892 Jun 18 '12 at 2:22
Please either define in what way conversions should be "best" (pretty code, the shortes code, least memory, fastest,...) or remove "best" from the title (and avoid in the future). – Alexei Levenkov Jun 18 '12 at 2:46
I meant "least cumbersome/clunky" – chris12892 Jun 18 '12 at 6:55

1 Answer

up vote 5 down vote accepted
private ICollection<byte> HexString2Ascii(string hexString)
{
    var bytes = new List<byte>(hexString.Length / 2);
    for (int i = 0; i <= hexString.Length - 2; i += 2)
        bytes.Add(byte.Parse(hexString.Substring(i, 2), System.Globalization.NumberStyles.HexNumber));
    return bytes;
}
share|improve this answer
Thanks, but what I am trying to do is go from an ASCII input to a byte array output. – chris12892 Jun 18 '12 at 2:23
1  
Oh ok, that should be a simple modification. – Tim S. Jun 18 '12 at 2:24
1  
I've made the modification. If you always want an array, make it return bytes.ToArray(); and change the return type of the method. – Tim S. Jun 18 '12 at 2:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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