gpt4 book ai didi

c# - 如何将十六进制字符串转换为十进制值

转载 作者:太空狗 更新时间:2023-10-29 21:22:13 25 4
gpt4 key购买 nike

我试图将十六进制字符串转换为十进制值,但它没有给我预期的结果

我试过 convert.toint32(hexa,16) , convert.todecimal(hexa)

我有一个像这样的字符串:

  • 1 12 94 201 198

然后我把它转换成:

  • 10C5EC9C6

我知道结果是:

  • 4502505926

我需要你的帮助

非常感谢您的帮助:)

最佳答案

System.Decimal (C# decimal) 类型是浮点类型,不允许使用 NumberStyles.HexNumber 说明符。 System.Int32 (C# int) 类型的允许值范围不足以进行转换。但是您可以使用 System.Int64 (C# long) 类型执行此转换:

string s = "10C5EC9C6";
long n = Int64.Parse(s, System.Globalization.NumberStyles.HexNumber);
'n ==> 4502505926

当然你可以在之后将结果转换为decimal:

decimal d = (decimal)Int64.Parse(s, System.Globalization.NumberStyles.HexNumber);

或者您可以直接使用十进制编码的十六进制组转换原始字符串,并将转换为十六进制字符串的中间表示形式保存。

string s = "1 12 94 201 198";
string[] groups = s.Split();
long result = 0;
foreach (string hexGroup in groups) {
result = 256 * result + Int32.Parse(hexGroup);
}
Console.WriteLine(result); // ==> 4502505926

因为一个组代表 2 个十六进制数字,所以我们乘以 16 * 16 = 256。

关于c# - 如何将十六进制字符串转换为十进制值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27362010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com