C#如何格式化双到小数点后一位没有四舍五入(C# How to format a double to

2019-07-30 16:55发布

我需要没有它四舍五入到格式的双精度值到小数点后一位。

double value = 3.984568438706
string result = "";

我曾尝试是:

1)

result = value.ToString("##.##", System.Globalization.CultureInfo.InvariantCulture) + "%"; 
// returns 3.98%

2)

result = value.ToString("##.#", System.Globalization.CultureInfo.InvariantCulture) + "%"; 
// returns 4%

3)

 result = value.ToString("##.0", System.Globalization.CultureInfo.InvariantCulture) + "%"; 
 // returns 4.0%

4)(以下其他建议)

value = (value / 100);
result = String.Format("{0:P1}", Math.Truncate(value * 10000) / 10000);
// returns 4.0%

result = string.Format("{0:0.0%}",value); // returns 4.0%

我需要显示的是值3.9%

感谢提前任何帮助。

Answer 1:

result=string.Format("{0:0.0}",Math.Truncate(value*10)/10);


Answer 2:

我会做一个实用的方法来处理这个问题:

static double Truncate(double value, int digits)
{
    double mult = System.Math.Pow(10.0, digits);
    return System.Math.Truncate(value * mult) / mult;
}

然后,你可以这样做:

result = Truncate(value, 1).ToString("##.#", System.Globalization.CultureInfo.InvariantCulture) + "%"; 

请注意,您可能还需要Math.Floor而不是截断-但是这取决于你想怎么负值处理。



Answer 3:

我知道这是一个古老的线程,但我只是不得不这样做。 虽然这里的方法工作,我希望能够影响到了很多,所以使用Math.Truncate上的所有调用的String.Format电话是不是真的一个很好的选择一个简单的方法。

因此,我做了一个自定义的格式提供这将让我截断添加到格式化字符串,如

string.format(new FormatProvider(), "{0:T}", 1.1299); // 1.12
string.format(new FormatProvider(), "{0:T(3)", 1.12399); // 1.123
string.format(new FormatProvider(), "{0:T(1)0,000.0", 1000.9999); // 1,000.9

实现是很简单,很容易扩展到其他要求。

public class FormatProvider : IFormatProvider, ICustomFormatter
{
    public object GetFormat(Type formatType)
    {
        if (formatType == typeof (ICustomFormatter))
        {
            return this;
        }
        return null;
    }

    public string Format(string format, object arg, IFormatProvider formatProvider)
    {
        if (arg.GetType() != typeof (double))
        {
            try
            {
                return HandleOtherFormats(format, arg);
            }
            catch (FormatException e)
            {
                throw new FormatException(string.Format("The format of '{0}' is invalid.", format));
            }
        }

        if (format.StartsWith("T"))
        {
            int dp = 2;
            int idx = 1;
            if (format.Length > 1)
            {
                if (format[1] == '(')
                {
                    int closeIdx = format.IndexOf(')');
                    if (closeIdx > 0)
                    {
                        if (int.TryParse(format.Substring(2, closeIdx - 2), out dp))
                        {
                            idx = closeIdx + 1;
                        }
                    }
                    else
                    {
                        throw new FormatException(string.Format("The format of '{0}' is invalid.", format));
                    }
                }
            }
            double mult = Math.Pow(10, dp);
            arg = Math.Truncate((double)arg * mult) / mult;
            format = format.Substring(idx);
        }

        try
        {
            return HandleOtherFormats(format, arg);
        }
        catch (FormatException e)
        {
            throw new FormatException(string.Format("The format of '{0}' is invalid.", format));
        }
    }

    private string HandleOtherFormats(string format, object arg)
    {
        if (arg is IFormattable)
        {
            return ((IFormattable) arg).ToString(format, CultureInfo.CurrentCulture);
        }
        return arg != null ? arg.ToString() : String.Empty;
    }
}


Answer 4:

ToString()不这样做。 你必须添加额外的代码。 其他答案显示的数学方法,下面我的做法是一种外开箱。

string result = value.ToString();
Console.WriteLine("{0}", result.Substring(0, result.LastIndexOf('.') + 2));

这是一个相当简单的蛮力方法,但它的伎俩时,小数点是一个“”。 下面是一个扩展方法来缓解疼痛(和小数点交易)。

public static class Extensions
{
    public static string ToStringNoTruncate(this double me, int decimalplaces = 1)
    {
        string result = me.ToString();
        char dec = System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator[0];
        return result.Substring(0, result.LastIndexOf(dec) + decimalplaces + 1);
    }
}


Answer 5:

( Math.Truncate( ( value * 10 ) ) / 1000 ).ToString( "#.#%" )


Answer 6:

只需使用模运算符+内置ToString

result = (value - (value % 0.1)).ToString("N1") + "%";


文章来源: C# How to format a double to one decimal place without rounding