小编典典

.NET String.Format() 为数字添加千位逗号

all

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

String.Format()将是正确的路径吗?我会使用什么格式?


阅读 116

收藏
2022-02-28

共1个答案

小编典典

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