当前位置:  开发笔记 > 编程语言 > 正文

为什么百分比的标准数字格式包含空格?

如何解决《为什么百分比的标准数字格式包含空格?》经验,为你挑选了2个好方法。

看看http://www.nasdaq.com/或http://finance.yahoo.com/似乎正好在数字之间没有空格的百分号是常见的:)

看看http://msdn.microsoft.com/en-us/library/system.globalization.numberformatinfo.percentpositivepattern.aspx

它可能取决于文化,默认(不变)为n%



1> Aleris..:

看看http://www.nasdaq.com/或http://finance.yahoo.com/似乎正好在数字之间没有空格的百分号是常见的:)

看看http://msdn.microsoft.com/en-us/library/system.globalization.numberformatinfo.percentpositivepattern.aspx

它可能取决于文化,默认(不变)为n%



2> 小智..:

这对我有用:

System.Globalization.CultureInfo  newCulture = (System.Globalization.CultureInfo)System.Threading.Thread.CurrentThread.CurrentCulture.Clone();
newCulture.NumberFormat.PercentPositivePattern = 1;  // Avoid putting a space between a number and its percentage
System.Threading.Thread.CurrentThread.CurrentCulture = newCulture;

推荐阅读
郑小蒜9299_941611_G
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有