Converting from hex to string

后端 未结 6 681
慢半拍i
慢半拍i 2020-11-27 04:44

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 a

相关标签:
6条回答
  • 2020-11-27 05:09
     string hexString = "8E2";
     int num = Int32.Parse(hexString, System.Globalization.NumberStyles.HexNumber);
     Console.WriteLine(num);
     //Output: 2274
    

    From https://msdn.microsoft.com/en-us/library/bb311038.aspx

    0 讨论(0)
  • 2020-11-27 05:15

    If you need the result as byte array, you should pass it directly without changing it to a string, then change it back to bytes. In your example the (f.e.: 0x31 = 1) is the ASCII codes. In that case to convert a string (of hex values) to ASCII values use: Encoding.ASCII.GetString(byte[])

            byte[] data = new byte[] { 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x30 };
            string ascii=Encoding.ASCII.GetString(data);
            Console.WriteLine(ascii);
    

    The console will display: 1234567890

    0 讨论(0)
  • 2020-11-27 05:18

    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;
    }
    
    0 讨论(0)
  • 2020-11-27 05:21

    For Unicode support:

    public class HexadecimalEncoding
    {
        public static string ToHexString(string str)
        {
            var sb = new StringBuilder();
    
            var bytes = Encoding.Unicode.GetBytes(str);
            foreach (var t in bytes)
            {
                sb.Append(t.ToString("X2"));
            }
    
            return sb.ToString(); // returns: "48656C6C6F20776F726C64" for "Hello world"
        }
    
        public static string FromHexString(string hexString)
        {
            var bytes = new byte[hexString.Length / 2];
            for (var i = 0; i < bytes.Length; i++)
            {
                bytes[i] = Convert.ToByte(hexString.Substring(i * 2, 2), 16);
            }
    
            return Encoding.Unicode.GetString(bytes); // returns: "Hello world" for "48656C6C6F20776F726C64"
        }
    }
    
    0 讨论(0)
  • 2020-11-27 05:23

    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[])

    0 讨论(0)
  • 2020-11-27 05:33
    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}

    0 讨论(0)
提交回复
热议问题