如何在c#中将1700格式化为1'700和1000000格式化为1'000'000?
我喜欢像数学一样格式化所有数字。是否有预定义的函数或者只能通过子字符串和替换来实现?
编辑:我的文化是 de-ch
最好的问候
I like to format all numbers like in math. is there a predefined function or is that just possible with substring and replace?
edit: my culture is de-ch
Best regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
试试这个
或者这个
Try this
Or this
试试这个:
或者
Try this:
Or
使用 int.ToString() 和 < a href="http://msdn.microsoft.com/en-us/library/1ksz8yb7.aspx" rel="nofollow noreferrer">iFormatProvider。
另请参阅此处 msdn。
use int.ToString() and an iFormatProvider.
also take a look here msdn.
我总是使用这种格式
,所以你可以使用它
I always Use this format
so You can use it in