home *** CD-ROM | disk | FTP | other *** search
- <!--- This example shows LSParseEuroCurrency --->
- <HTML>
- <HEAD>
- <TITLE>LSParseEuroCurrency Example</TITLE>
- </HEAD>
-
- <BASEFONT FACE="Arial, Helvetica" SIZE=2>
- <BODY bgcolor="#FFFFD5">
- <H3>LSParseEuroCurrency Example</H3>
-
- <P>LSParseEuroCurrency converts a local-specific currency
- string to a number. Attempts conversion through each of
- the three default currency formats.
-
- <!--- loop through a list of possible locales and
- show currency values for 123,456 units --->
- <CFLOOP LIST="#Server.Coldfusion.SupportedLocales#"
- INDEX="locale" DELIMITERS=",">
- <CFSET oldlocale = SetLocale(locale)>
- <CFOUTPUT><P><B><I>#locale#</I></B><BR>
- Local: #LSEuroCurrencyFormat(123456, "local")#<BR>
- Currency Number:
- #LSParseEuroCurrency("EUR123456")#<BR>
- International: #LSEuroCurrencyFormat(123456, "international")#<BR>
- None: #LSEuroCurrencyFormat(123456, "none")#<BR>
- <Hr noshade>
- </CFOUTPUT>
- </CFLOOP>
-
- </BODY>
- </HTML>