2011-06-06 67 views
-1

可能重複:
.NET String.Format() to add commas in thousands place for a number
Add comma to numbers every three digits using C#在c#中的9位數字中的每個3位數後放置一個逗號?

我想C#創建一個邏輯太把逗號每3位數的int任意9位數的號碼後,可以在任何身體電話我怎麼能做到這一點?

就像我有以下數字123456789然後我想形成它像123,456,789。

+0

看到http://stackoverflow.com/questions/105770/net-string-format-to-add-commas-in-千位爲數 – Rich 2011-06-06 18:37:06

+0

檢查ToString()和String.Format – epitka 2011-06-06 18:37:22

+0

沒有預定義函數..上帝邏輯我awnt。 – NoviceToDotNet 2011-06-06 18:40:29

回答

0
var formattedString = string.Format("{0:0,0}", 123456789); 
+0

請參閱http://ideone.com/glk7P – 2011-06-06 18:41:18

0
double value = 1234567890; 
Console.WriteLine(value.ToString("#,#", CultureInfo.InvariantCulture)); 
相關問題