小编典典

.NET String.Format()在数千个数字中添加逗号

c#

我想在数千个数字中添加一个逗号。

String.Format()?


阅读 343

收藏
2020-05-19

共1个答案

小编典典

String.Format("{0:n}", 1234);  // Output: 1,234.00
String.Format("{0:n0}", 9876); // No digits after the decimal point. Output: 9,876
2020-05-19