gpt4 book ai didi

java - 有效地将三个字母的货币名称转换为符号名称(例如 20 美元到 20 美元)

转载 作者:行者123 更新时间:2023-12-04 04:46:28 25 4
gpt4 key购买 nike

我有一个格式化的字符串,它等于 USD 20
我想把它转换成 $20 .

我怎样才能有效地做到这一点?我应该用正则表达式来做,但由于区域设置的变化,国家/地区 ISOCode 也会发生变化。

最佳答案

你需要的是这个

      import java.util.Currency; 
import java.util.Locale;

.
      // create a currency for US locale
Locale locale = Locale.US;
Currency curr = Currency.getInstance(locale);

// get and print the symbol of the currency
StringBuilder symbol = new StringBuilder(curr.getSymbol(locale));
System.out.println("Currency symbol is = " + symbol);

然后将 Amount 连接到符号。

In this case, if the Locale changes, you will need to change it only in locale object. The rest of the logic will be the same.



希望这会有所帮助。

关于java - 有效地将三个字母的货币名称转换为符号名称(例如 20 美元到 20 美元),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18104084/

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