August 2003
Intermediate to advanced
1140 pages
68h 45m
English
LSParseNumber
LSParseNumber(string)Converts string to a locale-specific
numeric value. Here’s an example that applies the
function to each locale:
<cfloop index="locale" list="#Server.Coldfusion.SupportedLocales#">
<cfset SetLocale(locale)>
<cfoutput>
<p><b>#locale#</b><br>
Local: #LSNumberFormat(1000000.99)#<br>
LSParseNumber: #LSParseNumber(LSNumberFormat(1000000.99))#<br>
</cfoutput>
</cfloop>