Hex To String C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T10:13:47Zhttp://stackoverflow.com/feeds/question/724862http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/724862/hex-to-string-c1Hex To String C#John2009-04-07T09:45:10Z2009-05-23T00:59:11Z
<p>Hello,</p>
<p>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.</p>
<p>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.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/724862/hex-to-string-c/724875#7248752Answer by 1800 INFORMATION for Hex To String C#1800 INFORMATION2009-04-07T09:49:31Z2009-04-07T09:49:31Z<p>Why not just remove the dashes?</p>
http://stackoverflow.com/questions/724862/hex-to-string-c/724898#7248981Answer by Ian Quigley for Hex To String C#Ian Quigley2009-04-07T09:58:55Z2009-04-07T09:58:55Z<pre><code>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();
</code></pre>
<p>You can split the string at the -<br />
Convert the text to ints (int.TryParse)<br />
Output the int as a hex string {0:x2}</p>
http://stackoverflow.com/questions/724862/hex-to-string-c/724899#7248991Answer by Will Dean for Hex To String C#Will Dean2009-04-07T09:59:33Z2009-04-07T09:59:33Z<p>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[])</p>
http://stackoverflow.com/questions/724862/hex-to-string-c/724905#7249055Answer by Marc Gravell for Hex To String C#Marc Gravell2009-04-07T10:01:06Z2009-04-07T10:01:06Z<p>Like so?</p>
<pre><code>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;
}
</code></pre>