Intl.NumberFormat.prototype.formatToParts()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2017.

The formatToParts() method of Intl.NumberFormat instances returns an array of objects representing each part of the formatted string that would be returned by format(). It is useful for building custom strings from the locale-specific tokens.

Try it

Syntax

js
formatToParts(number)

Parameters

number

A Number, BigInt, or string, to format. Strings are parsed in the same way as in number conversion, except that formatToParts() will use the exact value that the string represents, avoiding loss of precision during implicitly conversion to a number.

Return value

An Array of objects containing the formatted number in parts. Each object has two properties, type and value, each containing a string. The string concatenation of value, in the order provided, will result in the same string as format(). The type may be one of the following:

literal

Any string that's a part of the format pattern; for example " ". Note that common tokens like the decimal separator or the plus/minus signs have their own token types.

integer

The integral part of the number, or a segment of it if using grouping (controlled by options.useGrouping).

group

The group separator string, such as ",". Only present when using grouping (controlled by options.useGrouping).

decimal

The decimal separator string, such as ".". Only present when fraction is present.

fraction

The fractional part of the number.

compact

The compact exponent, such as "M" or "thousands". Only present when options.notation is "compact". The form ("short" or "long") can be controlled via options.compactDisplay.

exponentSeparator

The exponent separator, such as "E". Only present when options.notation is "scientific" or "engineering".

exponentMinusSign

The exponent minus sign string, such as "-". Only present when options.notation is "scientific" or "engineering" and the exponent is negative.

exponentInteger

The exponent's integer value. Only present when options.notation is "scientific" or "engineering".

nan

A string representing NaN, such as "NaN". This is the sole token representing the number itself when the number is NaN.

infinity

A string representing Infinity or -Infinity, such as "∞". This is the sole token representing the number itself when the number is Infinity or -Infinity.

plusSign

The plus sign, such as "+".

minusSign

The minus sign, such as "-".

percentSign

The percent sign, such as "%". Only present when options.style is "percent".

unit

The unit string, such as "l" or "litres". Only present when options.style is "unit". The form ("short", "narrow", or "long") can be controlled via options.unitDisplay.

currency

The currency string, such as "$", "€", "Dollar", or "Euro". Only present when options.style is "currency". The form ("code", "symbol", "narrowSymbol", or "name") can be controlled via options.currencyDisplay.

unknown

Reserved for any token that's not recognized as one of the above; should be rarely encountered.

Examples

Using formatToParts()

The format() method outputs localized, opaque strings that cannot be manipulated directly:

js
const number = 3500;

const formatter = new Intl.NumberFormat("de-DE", {
  style: "currency",
  currency: "EUR",
});

formatter.format(number);
// "3.500,00 €"

However, in many user interfaces you may want to customize the formatting of this string, or interleave it with other texts. The formatToParts() method produces the same information in parts:

js
formatter.formatToParts(number);

// return value:
[
  { type: "integer", value: "3" },
  { type: "group", value: "." },
  { type: "integer", value: "500" },
  { type: "decimal", value: "," },
  { type: "fraction", value: "00" },
  { type: "literal", value: " " },
  { type: "currency", value: "€" },
];

Now the information is available separately and it can be formatted and concatenated again in a customized way. For example by using Array.prototype.map(), arrow functions, a switch statement, template literals, and Array.prototype.join(), to insert additional markup for certain components.

js
const numberString = formatter
  .formatToParts(number)
  .map(({ type, value }) => {
    switch (type) {
      case "currency":
        return `<strong>${value}</strong>`;
      default:
        return value;
    }
  })
  .join("");

console.log(numberString);
// "3.500,00 <strong>€</strong>"

Specifications

Specification
ECMAScript Internationalization API Specification
# sec-intl.numberformat.prototype.formattoparts

Browser compatibility

BCD tables only load in the browser

See also