先用点表示小数,再用逗号表示

Represent decimal first with point, then comma

我找到了很多先逗号再点的解决方案,我想要这样的东西:133.000,00

到目前为止我尝试了什么:@item.Price.ToString("C3", System.Globalization.CultureInfo.CreateSpecificCulture("da-DK"))

@String.Format("{0:#.##0,######}", item.Price)

在第二次格式化中我只得到 133000.00

你的意思可能是(在 var culture = CultureInfo.CreateSpecificCulture("da-DK"); 之后)

var s = price.ToString("#,##0.00####", culture);

或:

var s = string.Format(culture, "{0:#,##0.00####}", price);

在这两种情况下,您都需要传递要使用的区域性,并且:格式字符串中的.表示"the culture's decimal point token",并且, 在格式字符串中表示 "the culture's thousands separator token"。注意我在最后使用 .00## 因为你似乎想要两位小数,即使它们是零。

像这样的东西应该可以工作:

item.Price.ToString("#,#0.00", System.Globalization.CultureInfo.CreateSpecificCulture("da-DK"))