0
可能重複:
.NET String.Format() to add commas in thousands place for a numberfor循環格式化MVC3
我有一個是通過傳遞到一個視圖,它需要格式化的int
所以它不是一個大的塊數。例如
0
00
000
000,0
000,000
000,000,000
我怎樣才能做到這一點使用for循環?
感謝
可能重複:
.NET String.Format() to add commas in thousands place for a numberfor循環格式化MVC3
我有一個是通過傳遞到一個視圖,它需要格式化的int
所以它不是一個大的塊數。例如
0
00
000
000,0
000,000
000,000,000
我怎樣才能做到這一點使用for循環?
感謝
您可能要輸出的整數i.ToString("###,###,###");
但是,如果int是0
你可以嘗試使用的System.Drawing.Color這不會顯示一個值代表顏色值而不是int。這有一個方法ToArgb()
什麼是格式化的標準?它會每次都以相同的方式格式化嗎?什麼是格式? – tranceporter
格式化所以每三個數字一個逗號插入 – user1643592
http://stackoverflow.com/questions/105770/net-string-format-to-add-commas-in-thousands-place-for-a-number – TGlatzer