NumberToMoneyText
Converts specified amount of money to formatted text representation, according to specified region.
Syntax
NumberToMoneyText("amount", "region");
Function arguments
- amount – (Decimal) Numeric money amount representation
- region – (String) Region specifier. Default is Poland. Allowed values: [ pl (Polish) | en (English) | de (German) | fr (French) | tr (Turkish ) | es (Spanish ) | pt (Portuguese ) | cs (Czech) | sl (Slovenian) | hu (Hungarian) | ru (Russian) ]
Return value
This function returns String.
Returns localized text representation of input numeric money amount.
Examples
Example 1:
This will return 'sto dwadzieścia trzy 45/100′.
NumberToMoneyText(123.45, "pl");