本文介绍了asp.net中的印度数字格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我想以印度货币格式显示数字.
例如:99999999.00就像9,99,99,999.00一样,任何人都请帮我解决这个问题.
预先感谢.
Hi All,
I want to display a number in Indian currency format.
Ex: 99999999.00 like 9,99,99,999.00 anyone please help me regarding this issue.
Thanks in advance.
推荐答案
double incsf = 99999999.00;
string s = String.Format("{0:#,###}", incsf);
这篇关于asp.net中的印度数字格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!