格式化一个double值,像货币,但没有货币符号(C#) [英] Format a double value like currency but without the currency sign (C#)

查看:704
本文介绍了格式化一个double值,像货币,但没有货币符号(C#)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我喂一个文本框显示我需要格式化这样一个平衡的字符串值:

  ###, ###,###,## 0.00 

我可以使用value.ToString(C ),但这将使货币符号在它的前面。



任何想法,我将如何喂养文本框来实现上述格式化之前操作字符串?



我试过了,没有成功:

 的String.Format(# ##,###,###,## 0.00,currentBalance); 



非常感谢,


解决方案

 字符串forDisplay = currentBalance.ToString(N2); 


I feed a textbox a string value showing me a balance that need to be formatted like this:

###,###,###,##0.00

I could use the value.ToString("c"), but this would put the currency sign in front of it.

Any idea how I would manipulate the string before feeding the textbox to achieve the above formatting?

I tried this, without success:

String.Format("###,###,###,##0.00", currentBalance);

Many Thanks,

解决方案

string forDisplay = currentBalance.ToString("N2");

这篇关于格式化一个double值,像货币,但没有货币符号(C#)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆