可能重複:
.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。
可能重複:
.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。
調用toString,並指定 「N」 爲format string
var formattedString = string.Format("{0:0,0}", 123456789);
請參閱http://ideone.com/glk7P – 2011-06-06 18:41:18
double value = 1234567890;
Console.WriteLine(value.ToString("#,#", CultureInfo.InvariantCulture));
看到http://stackoverflow.com/questions/105770/net-string-format-to-add-commas-in-千位爲數 – Rich 2011-06-06 18:37:06
檢查ToString()和String.Format – epitka 2011-06-06 18:37:22
沒有預定義函數..上帝邏輯我awnt。 – NoviceToDotNet 2011-06-06 18:40:29