1. <legend id='ZO7R5'><style id='ZO7R5'><dir id='ZO7R5'><q id='ZO7R5'></q></dir></style></legend>

    <tfoot id='ZO7R5'></tfoot>

    • <bdo id='ZO7R5'></bdo><ul id='ZO7R5'></ul>

    1. <i id='ZO7R5'><tr id='ZO7R5'><dt id='ZO7R5'><q id='ZO7R5'><span id='ZO7R5'><b id='ZO7R5'><form id='ZO7R5'><ins id='ZO7R5'></ins><ul id='ZO7R5'></ul><sub id='ZO7R5'></sub></form><legend id='ZO7R5'></legend><bdo id='ZO7R5'><pre id='ZO7R5'><center id='ZO7R5'></center></pre></bdo></b><th id='ZO7R5'></th></span></q></dt></tr></i><div id='ZO7R5'><tfoot id='ZO7R5'></tfoot><dl id='ZO7R5'><fieldset id='ZO7R5'></fieldset></dl></div>

      <small id='ZO7R5'></small><noframes id='ZO7R5'>

      使用 .NET 格式化大数

      时间:2023-05-20
        <tfoot id='LTDEX'></tfoot>

      1. <i id='LTDEX'><tr id='LTDEX'><dt id='LTDEX'><q id='LTDEX'><span id='LTDEX'><b id='LTDEX'><form id='LTDEX'><ins id='LTDEX'></ins><ul id='LTDEX'></ul><sub id='LTDEX'></sub></form><legend id='LTDEX'></legend><bdo id='LTDEX'><pre id='LTDEX'><center id='LTDEX'></center></pre></bdo></b><th id='LTDEX'></th></span></q></dt></tr></i><div id='LTDEX'><tfoot id='LTDEX'></tfoot><dl id='LTDEX'><fieldset id='LTDEX'></fieldset></dl></div>
          <bdo id='LTDEX'></bdo><ul id='LTDEX'></ul>
            <tbody id='LTDEX'></tbody>
        • <legend id='LTDEX'><style id='LTDEX'><dir id='LTDEX'><q id='LTDEX'></q></dir></style></legend>

            1. <small id='LTDEX'></small><noframes id='LTDEX'>

                本文介绍了使用 .NET 格式化大数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                限时送ChatGPT账号..

                我需要将像 4,316,000 这样的大数字格式化为4.3m".

                I have a requirement to format large numbers like 4,316,000 as "4.3m".

                如何在 C# 中做到这一点?

                How can I do this in C#?

                推荐答案

                你可以使用 Log10 来确定正确的中断.像这样的东西可以工作:

                You can use Log10 to determine the correct break. Something like this could work:

                double number = 4316000;
                
                int mag = (int)(Math.Floor(Math.Log10(number))/3); // Truncates to 6, divides to 2
                double divisor = Math.Pow(10, mag*3);
                
                double shortNumber = number / divisor;
                
                string suffix;
                switch(mag)
                {
                    case 0:
                        suffix = string.Empty;
                        break;
                    case 1:
                        suffix = "k";
                        break;
                    case 2:
                        suffix = "m";
                        break;
                    case 3:
                        suffix = "b";
                        break;
                }
                string result = shortNumber.ToString("N1") + suffix; // 4.3m
                

                这篇关于使用 .NET 格式化大数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:用逗号代替小数将数字格式化为字符串 下一篇:EPPlus - LoadFromCollection - 文本转换为数字

                相关文章

                <small id='uisoc'></small><noframes id='uisoc'>

                  <tfoot id='uisoc'></tfoot>
                1. <legend id='uisoc'><style id='uisoc'><dir id='uisoc'><q id='uisoc'></q></dir></style></legend>
                    <bdo id='uisoc'></bdo><ul id='uisoc'></ul>
                2. <i id='uisoc'><tr id='uisoc'><dt id='uisoc'><q id='uisoc'><span id='uisoc'><b id='uisoc'><form id='uisoc'><ins id='uisoc'></ins><ul id='uisoc'></ul><sub id='uisoc'></sub></form><legend id='uisoc'></legend><bdo id='uisoc'><pre id='uisoc'><center id='uisoc'></center></pre></bdo></b><th id='uisoc'></th></span></q></dt></tr></i><div id='uisoc'><tfoot id='uisoc'></tfoot><dl id='uisoc'><fieldset id='uisoc'></fieldset></dl></div>