有谁知道如何使用格式字符串bankers rounding?我一直在使用“{0:c}”,但这并不像银行家四舍五入那样。 Math.Round()
方法让银行家四舍五入。我只需要能够使用格式字符串复制它的舍入方式。
注意:原始问题颇具误导性,提及正则表达式的答案源于此。
答案 0 :(得分:3)
Regexp是一种模式匹配语言。你不能在Regexp中进行算术运算。
使用IFormatProvider和ICustomFormatter进行一些实验。这是一个链接可能会指向正确的方向。 http://codebetter.com/blogs/david.hayden/archive/2006/03/12/140732.aspx
答案 1 :(得分:3)
你不能简单地在字符串输入上调用Math.Round()来获得你想要的行为吗?
而不是:
string s = string.Format("{0:c}", 12345.6789);
执行:
string s = string.Format("{0:c}", Math.Round(12345.6789));
答案 2 :(得分:0)
它不可能,正则表达式没有任何“数字”的概念。您可以使用match evaluator,但是您将添加命令式c#代码,并且会偏离正则表达式的唯一要求。
答案 3 :(得分:0)
.Net已经支持算术和银行家的四舍五入:
//midpoint always goes 'up': 2.5 -> 3
Math.Round( input, MidpointRounding.AwayFromZero );
//midpoint always goes to nearest even: 2.5 -> 2, 5.5 -> 6
//aka bankers' rounding
Math.Round( input, MidpointRounding.ToEven );
“甚至”舍入实际上是默认值,即使“远离零”是你在学校学到的东西。
这是因为在引擎盖下计算机处理器也做银行家的四舍五入。
//defaults to banker's
Math.Round( input );
我原本以为任何舍入格式字符串都会默认为银行家的舍入,是不是这样呢?
答案 4 :(得分:0)
如果您使用的是.NET 3.5,则可以定义一种扩展方法来帮助您执行此操作:
public static class DoubleExtensions
{
public static string Format(this double d)
{
return String.Format("{0:c}", Math.Round(d));
}
}
然后,当你打电话时,你可以这样做:
12345.6789.Format();