我正在尝试将货币值格式化为以GBP输出,但在尝试从$更改为£时遇到了麻烦。我目前有以下...
numberFormat(TOTAL_VALUE_GBP,'_$,9.99')
我需要做什么才能输出为£?
答案 0 :(得分:5)
您可以使用lsCurrencyFormat()
功能。首先,在这里使用setLocale()
将语言环境信息设置为您想要的语言环境(英语(英国))。然后使用lsCurrencyFormat()
。
<cfset setLocale('English (UK)')>
<cfset amountInGBP = lsCurrencyFormat(100000, "local")>
<cfoutput>#amountInGBP#</cfoutput>