LSIsCurrency()

Determines whether a string is a valid representation of a currency amount in the current locale.

LSIsCurrency( number=string, locale=locale );

Returns: Boolean

Argument Description
number
string, required

A currency string

Alias: string, currency_number, currency

locale
locale, optional

Locale to use instead of the locale of the page when processing the function

Examples

<cfoutput>
	#LSIsCurrency(4.5)#<br>
	#LSIsCurrency("$4.50")#<br>
	#LSIsCurrency("£4.50", "English (UK)")#
</cfoutput>

See also