Attention

TYPO3 v9 has reached its end-of-life September 30th, 2021 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.

You can order Extended Long Term Support (ELTS) here: TYPO3 ELTS.

format.currency

Formats a given float to a currency representation.

Examples

Defaults

<f:format.currency>123.456</f:format.currency>

Output:

123,46

All parameters

<f:format.currency decimalSeparator="." thousandsSeparator="," decimals="2"
    currencySign="$" prependCurrency="true" separateCurrency="false"
>
    54321
</f:format.currency>

Output:

$54,321.00

Inline notation

{someNumber -> f:format.currency(thousandsSeparator: ',', currencySign: 'EUR')}

Output:

54,321,00 EUR

Depending on the value of {someNumber}.

Use dash for decimals without value

<f:format.currency useDash="true">123.00</f:format.currency>

Output:

123,-

Arguments

currencySign

DataType

string

Required

false

Description

The currency sign, eg $ or .

decimalSeparator

DataType

string

Default

','

Required

false

Description

The separator for the decimal point.

thousandsSeparator

DataType

string

Default

'.'

Required

false

Description

The thousands separator.

prependCurrency

DataType

mixed

Required

false

Description

Select if the currency sign should be prepended

separateCurrency

DataType

mixed

Default

true

Required

false

Description

Separate the currency sign from the number by a single space, defaults to true due to backwards compatibility

decimals

DataType

mixed

Default

2

Required

false

Description

Set decimals places.

useDash

DataType

mixed

Required

false

Description

Use the dash instead of decimal 00