是否有 1 到 2 位小数的 .Net FormatString?

发布于 2024-11-14 20:34:32 字数 286 浏览 4 评论 0原文

我需要将给定数字格式化为至少 1 位小数和最多 2 位小数,如下所示:

4      -> 4.0
4.1    -> 4.1
4.25   -> 4.25
4.3333 -> 4.33
4.5    -> 4.5
5      -> 5.0

是否有一个 FormatString 字符串可以提供此值?

如:

MyDecimal.ToString("[something here]")

I have a requirement to format a given number to at least 1 decimal place and up to 2 decimal places as in:

4      -> 4.0
4.1    -> 4.1
4.25   -> 4.25
4.3333 -> 4.33
4.5    -> 4.5
5      -> 5.0

Is there a FormatString string which will deliver this?

as in:

MyDecimal.ToString("[something here]")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

苏辞 2024-11-21 20:34:32

是的,您可以有条件地使用 # 格式占位符包含第二位小数。

MyDecimal.ToString("0.0#")

Yes, you can conditionally include a second decimal place with the # format placeholder.

MyDecimal.ToString("0.0#")
我的奇迹 2024-11-21 20:34:32

可能是这样的:

myDecimal.ToString("#.0#");

至少,根据你给出的例子,帽子工作。

probably something like:

myDecimal.ToString("#.0#");

At least, based on the examples you gave hat'd work.

倒数 2024-11-21 20:34:32

字符串 "0.0#" 应该可以做到这一点。

The string "0.0#" should do that.

苄①跕圉湢 2024-11-21 20:34:32

在C#中考虑它;就像下面这样

//max. two decimal places
String.Format("{0:0.##}", 123.4567);      // "123.46"
String.Format("{0:0.##}", 123.4);         // "123.4"
String.Format("{0:0.##}", 123.0);         // "123"

Considering it in C#; it would be like below

//max. two decimal places
String.Format("{0:0.##}", 123.4567);      // "123.46"
String.Format("{0:0.##}", 123.4);         // "123.4"
String.Format("{0:0.##}", 123.0);         // "123"
空‖城人不在 2024-11-21 20:34:32

或者合并安东尼和拉胡尔的答案:

string.Format("{0:0.0#}", someNumber);

例如:

string formatStr = "{0:0.0#}";

var output = new StringBuilder();

var input = new List<double> { 4, 4.1, 4.25, 4.3333, 4.5, 5 };

foreach ( var num in input ) {
    output.AppendLine(num + " -> " + string.Format(formatStr, num));
}

/* output
4 -> 4.0
4.1 -> 4.1
4.25 -> 4.25
4.3333 -> 4.33
4.5 -> 4.5
5 -> 5.0
*/

Or to merge Anthony and Rahul's answers:

string.Format("{0:0.0#}", someNumber);

e.g.:

string formatStr = "{0:0.0#}";

var output = new StringBuilder();

var input = new List<double> { 4, 4.1, 4.25, 4.3333, 4.5, 5 };

foreach ( var num in input ) {
    output.AppendLine(num + " -> " + string.Format(formatStr, num));
}

/* output
4 -> 4.0
4.1 -> 4.1
4.25 -> 4.25
4.3333 -> 4.33
4.5 -> 4.5
5 -> 5.0
*/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文