vote up 1 vote down star
2

Hello,

I need to check for a string located inside a packet that I receive as byte array.If I use BitConverter.ToString() ,I get the bytes as String with dashes(example 00-50-25-40-A5-FF). I tried most function I found after a quick googling,but most of them have input parameter type string and if I call them with the string with dashes,It throws an exception.

I need a function that turns Hex(as string or as byte) into the string that represents the hexadecimal value(example 0x31 = 1). If the input parameter is string,the function should recognize dashes(example "47-61-74-65-77-61-79-53-65-72-76-65-72") ,because BitConverter doesn't convert correctly.

Thanks.

flag

4 Answers

vote up 5 vote down check

Like so?

static void Main()
{
    byte[] data = FromHex("47-61-74-65-77-61-79-53-65-72-76-65-72");
    string s = Encoding.ASCII.GetString(data); // GatewayServer
}
public static byte[] FromHex(string hex)
{
    hex = hex.Replace("-", "");
    byte[] raw = new byte[hex.Length / 2];
    for (int i = 0; i < raw.Length; i++)
    {
        raw[i] = Convert.ToByte(hex.Substring(i * 2, 2), 16);
    }
    return raw;
}
link|flag
// GatewayServer...have we been Copy+Pasting? – Ian Quigley Apr 7 at 10:07
@Ian - huh? That is the value of "s"... – Marc Gravell Apr 7 at 10:08
@Marc,Thanks! @lan,That's the byte array I gave in my question,Marc is more thank helpful for checking it as string. :) – John Apr 7 at 10:14
@Marc, yeah yeah.. I noticed that.. erm.. (hides under desk) – Ian Quigley Apr 7 at 10:14
@Marc,Encoding.ASCII has parameter char[].How to convert data into char[]? – John Apr 7 at 10:21
show 2 more comments
vote up 1 vote down

Your reference to "0x31 = 1" makes me think you're actually trying to convert ASCII values to strings - in which case you should be using something like Encoding.ASCII.GetString(Byte[])

link|flag
vote up 1 vote down
string str = "47-61-74-65-77-61-79-53-65-72-76-65-72";
string[] parts = str.Split('-');

foreach (string val in parts)
{ 
    int x;
    if (int.TryParse(val, out x))
    {
         Console.Write(string.Format("{0:x2} ", x);
    }
}
Console.WriteLine();

You can split the string at the -
Convert the text to ints (int.TryParse)
Output the int as a hex string {0:x2}

link|flag
vote up 2 vote down

Why not just remove the dashes?

link|flag

Your Answer

Get an OpenID
or

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