lsEuroCurrencyFormat

Formats a number in a locale-specific currency format.
[type - quicky]
local: the currency format used in the locale. (Default.)
international: the international standard currency format
none: the currency format used; no currency symbol

lsEuroCurrencyFormat(currency [, type, locale]) → returns string

Argument Reference

currency string
Required

type string
Default: local

Values:
  • local
  • international
  • none

locale string

Geographic/language locale value, where the format is a combination of an ISO 639-1 code and an optional ISO 3166-1 code separated by a dash or an underscore.
Values:
  • en
  • de_DE
  • de_CH
  • ...

Examples
Sample code invoking the lsEuroCurrencyFormat function

returns a currency value using the locale convention. Default value is local.

<!--- Loop through list of locales, show currency values for 100,000 units --->
<cfloop list = "#Server.Coldfusion.SupportedLocales#"
index = "locale" delimiters = ",">
<cfset oldlocale = setLocale(locale)>
<cfoutput><p><B><I>#locale#</I></B>
Local: #lsEuroCurrencyFormat(100000, "local")#
International: #lsEuroCurrencyFormat(100000, "international")#
None: #lsEuroCurrencyFormat(100000, "none")#
<hr noshade>
</cfoutput>
</cfloop>

lsEuroCurrencyFormat returns a currency value using the specified locale.

writeDump(lsEuroCurrencyFormat(5, 'local', 'de_DE'));

Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.

Fork me on GitHub