home *** CD-ROM | disk | FTP | other *** search
- <!--- This shows LSParseCurrency --->
-
- <HTML>
-
- <HEAD>
- <TITLE>LSParseCurrency Example</TITLE>
- </HEAD>
-
- <BASEFONT FACE="Arial, Helvetica" SIZE=2>
- <BODY bgcolor="#FFFFD5">
-
- <H3>LSParseCurrency Example</H3>
-
- <P>LSParseCurrency coverts 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: #LSCurrencyFormat(123456, "local")#<BR>
- Currency Number: #LSParseCurrency(LSCurrencyFormat(123456,"local"))#<BR>
- International: #LSCurrencyFormat(123456, "international")#<BR>
- None: #LSCurrencyFormat(123456, "none")#<BR>
- <hr noshade>
- </CFOUTPUT>
-
- </CFLOOP>
-
-
-
- </BODY>
- </HTML>
-