16

假设我有这个字符串

string str = "1234"

我需要一个将这个字符串转换为这个字符串的函数:

"0x31 0x32 0x33 0x34"  

我在网上搜索了很多类似的东西,但没有回答这个问题。

4

7 回答 7

18
string str = "1234";
char[] charValues = str.ToCharArray();
string hexOutput="";
foreach (char _eachChar in charValues )
{
    // Get the integral value of the character.
    int value = Convert.ToInt32(_eachChar);
    // Convert the decimal value to a hexadecimal value in string form.
    hexOutput += String.Format("{0:X}", value);
    // to make output as your eg 
    //  hexOutput +=" "+ String.Format("{0:X}", value);

}

    //here is the HEX hexOutput 
    //use hexOutput 
于 2013-04-10T08:34:23.793 回答
11

这似乎是扩展方法的工作

void Main()
{
    string test = "ABCD1234";
    string result = test.ToHex();
}

public static class StringExtensions
{
    public static string ToHex(this string input)
    {
        StringBuilder sb = new StringBuilder();
        foreach(char c in input)
            sb.AppendFormat("0x{0:X2} ", (int)c);
        return sb.ToString().Trim();
    }
}

一些提示。
不要使用字符串连接。字符串是不可变的,因此每次连接字符串时都会创建一个新字符串。(内存使用和碎片压力) StringBuilder 通常对于这种情况更有效。

字符串是字符数组,在字符串上使用 foreach 已经可以访问字符数组

这些通用代码非常适合包含在实用程序库中的扩展方法,该实用程序库始终可用于您的项目(代码重用)

于 2013-04-10T08:45:49.853 回答
3

转换为字节数组,然后转换为十六进制

        string data = "1234";

        // Convert to byte array
        byte[] retval = System.Text.Encoding.ASCII.GetBytes(data);

        // Convert to hex and add "0x"
        data =  "0x" + BitConverter.ToString(retval).Replace("-", " 0x");

        System.Diagnostics.Debug.WriteLine(data);
于 2015-12-31T23:35:03.060 回答
2
static void Main(string[] args)
{
    string str = "1234";
    char[] array = str.ToCharArray();
    string final = "";
    foreach (var i in array)
    {
        string hex = String.Format("{0:X}", Convert.ToInt32(i));
        final += hex.Insert(0, "0X") + " ";       
    }
    final = final.TrimEnd();
    Console.WriteLine(final);
}

输出将是;

0X31 0X32 0X33 0X34

这是一个DEMO.

于 2013-04-10T08:40:37.030 回答
2

解决这个问题的一个很好的声明方式是:

var str = "1234"

string.Join(" ", str.Select(c => $"0x{(int)c:X}"))

// Outputs "0x31 0x32 0x33 0x34"
于 2020-03-09T19:40:41.873 回答
1
 [TestMethod]
    public void ToHex()
    {
        string str = "1234A";
        var result = str.Select(s =>  string.Format("0x{0:X2}", ((byte)s)));

       foreach (var item in result)
       {
           Debug.WriteLine(item);
       }

    }
于 2013-04-10T08:36:24.560 回答
0

这是我用过的一个:

private static string ConvertToHex(byte[] bytes)
        {
            var builder = new StringBuilder();

            var hexCharacters = new[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };

            for (var i = 0; i < bytes.Length; i++)
            {
                int firstValue = (bytes[i] >> 4) & 0x0F;
                int secondValue = bytes[i] & 0x0F;

                char firstCharacter = hexCharacters[firstValue];
                char secondCharacter = hexCharacters[secondValue];

                builder.Append("0x");
                builder.Append(firstCharacter);
                builder.Append(secondCharacter);
                builder.Append(' ');
            }

            return builder.ToString().Trim(' ');
        }

然后像这样使用:

string test = "1234";
ConvertToHex(Encoding.UTF8.GetBytes(test));
于 2013-04-10T08:39:25.083 回答