gpt4 book ai didi

c# - 格式化带有公制前缀的数字?

转载 作者:bug小助手 更新时间:2023-10-28 10:46:56 32 4
gpt4 key购买 nike

Possible Duplicate:
Engineering notation in C#?

是否为 metric prefix优于 scientific notation可能有争议,但我认为它有其物理单位的用例。

我环顾四周,但似乎 .NET 没有内置类似的东西,还是我弄错了?任何实现这一点的方法都可以。

澄清一下:目标是将任何给定数字显示为 float 或整数字符串,其值介于 1 和 999 之间,并带有相应的度量前缀。

例如

1000 -> 1k
0.05 -> 50m

四舍五入:

1,436,963 -> 144 万

最佳答案

试试这个。我没有测试过,但它应该或多或少是正确的。

public string ToSI(double d, string format = null)
{
char[] incPrefixes = new[] { 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y' };
char[] decPrefixes = new[] { 'm', '\u03bc', 'n', 'p', 'f', 'a', 'z', 'y' };

int degree = (int)Math.Floor(Math.Log10(Math.Abs(d)) / 3);
double scaled = d * Math.Pow(1000, -degree);

char? prefix = null;
switch (Math.Sign(degree))
{
case 1: prefix = incPrefixes[degree - 1]; break;
case -1: prefix = decPrefixes[-degree - 1]; break;
}

return scaled.ToString(format) + prefix;
}

关于c# - 格式化带有公制前缀的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12181024/

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