gpt4 book ai didi

asp.net - gridview dataformatstring 自定义货币

转载 作者:数据小太阳 更新时间:2023-10-29 02:13:53 30 4
gpt4 key购买 nike

有没有办法使用数据格式字符串将欧元 (€) 货币符号移动到值的开头,而无需在 xml 中对欧元符号进行硬编码?

示例:使用 {0:C} 我得到 1234€ 而我想要的是得到 €1234。我无法找到解决方案,而不必像 €{0:g} 这样硬编码欧元符号。

有什么线索吗?

问候

最佳答案

您需要将 CurrencyPositivePattern 设置为 0:

NumberFormatInfo nfi = (NumberFormatInfo)NumberFormatInfo.CurrentInfo.Clone();
nfi.CurrencyPositivePattern = 0;

您可能希望设置 CurrencyNegativePattern以及。该链接提供了所有模式。

关于asp.net - gridview dataformatstring 自定义货币,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18057065/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com