将瑞典字符串转换为货币无法正确转换

发布于 2024-11-17 16:05:45 字数 445 浏览 3 评论 0原文

我正在尝试使用瑞典文化将“-10,00”从字符串转换为货币。这是我的代码:

ByVal ci As System.Globalization.CultureInfo("sv-SE")
Convert.ToDecimal("-10,00").ToString("C", ci)

上面代码的输出是:-1.000,00 kr,这是错误的。应该是 -10,00 kr。我的做法有什么问题吗?

解决方案

解决方案是将cultureInfo 作为第二个参数传递到ToDecimal 函数中。

ByVal ci As System.Globalization.CultureInfo("sv-SE")
Convert.ToDecimal("-10,00", ci).ToString("C", ci)

I am trying to convert "-10,00" from a string into a currency using the Swedish culture. Here is my code:

ByVal ci As System.Globalization.CultureInfo("sv-SE")
Convert.ToDecimal("-10,00").ToString("C", ci)

The output from the above code is: -1.000,00 kr, which is wrong. It should be -10,00 kr. Is there anything wrong with my approach?

Solution:

The solution is to pass the cultureInfo into the ToDecimal function as a second parameter.

ByVal ci As System.Globalization.CultureInfo("sv-SE")
Convert.ToDecimal("-10,00", ci).ToString("C", ci)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日裸衫吸 2024-11-24 16:05:45

C 格式说明符包含两位小数。
要摆脱它们,请使用C0

The C format specifier includes two decimal places.
To get rid of them, use C0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文