---
title: NumberFormatter.Style.currencyPlural
framework: foundation
role: symbol
role_heading: Case
path: foundation/numberformatter/style/currencyplural
---

# NumberFormatter.Style.currencyPlural

A currency style format that uses the pluralized denomination defined by the number formatter locale.

## Declaration

```swift
case currencyPlural
```

## Discussion

Discussion This style behaves like the NumberFormatter.Style.currency style, except that the currency symbol is replaced by the corresponding pluralized denomination. For example, in the en_US locale, the number 1234.5678 is represented as 1,234.57 US dollars; in the fr_FR locale, the number 1234.5678 is represented as 1 234,57 euros.

## See Also

### Formatting Styles

- [NumberFormatter.Style.none](foundation/numberformatter/style/none.md)
- [NumberFormatter.Style.decimal](foundation/numberformatter/style/decimal.md)
- [NumberFormatter.Style.percent](foundation/numberformatter/style/percent.md)
- [NumberFormatter.Style.scientific](foundation/numberformatter/style/scientific.md)
- [NumberFormatter.Style.spellOut](foundation/numberformatter/style/spellout.md)
- [NumberFormatter.Style.ordinal](foundation/numberformatter/style/ordinal.md)
- [NumberFormatter.Style.currency](foundation/numberformatter/style/currency.md)
- [NumberFormatter.Style.currencyAccounting](foundation/numberformatter/style/currencyaccounting.md)
- [NumberFormatter.Style.currencyISOCode](foundation/numberformatter/style/currencyisocode.md)
