我正在尝试格式化货币值以英镑输出,但是在尝试从$更改为£时遇到了麻烦。我目前有以下...
numberFormat(TOTAL_VALUE_GBP,'_$,9.99')
我需要做什么才能输出为£?
最佳答案
您可以使用lsCurrencyFormat()
函数。首先在这里使用 setLocale()
将语言环境信息设置为您想要的语言环境信息(英语(英国))。然后使用 lsCurrencyFormat()
。
<cfset setLocale('English (UK)')>
<cfset amountInGBP = lsCurrencyFormat(100000, "local")>
<cfoutput>#amountInGBP#</cfoutput>
关于coldfusion - 将数字格式从美元更改为英镑,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55239716/