User Guide
768 Chapter 3: ColdFusion Functions
<cfoutput><p>Current Locale: <b><i>#locale#</i></b><br>
<cfset localCurrency = LSEuroCurrencyFormat(123456, "local")>
Value in local currency: #localCurrency#<br>
Parsed using LSParseEuroCurrency:
#LSParseEuroCurrency(localCurrency)#<br>
<cfset IntlCurrency = LSEuroCurrencyFormat(123456, "international")>
Value with International currency formatting: #IntlCurrency#<br>
Parsed using LSParseEuroCurrency:
#LSParseEuroCurrency(IntlCurrency)#<br>
<cfset Currency = LSEuroCurrencyFormat(123456, "none")>
Value with no currency formatting: #currency#<br>
Parsed using LSParseEuroCurrency:
#LSParseEuroCurrency(Currency)#<br>
<hr noshade>
</cfoutput>
</cfloop>