Number Skeletons

Number skeletons are a locale-agnostic way to configure a NumberFormatter in ICU. Number skeletons work in MessageFormat.

Number skeletons consist of space-separated tokens that correspond to settings in ICU NumberFormatter. For example, to format a currency in compact notation, you could use this skeleton:

compact-short currency/GBP

To use a skeleton in MessageFormat, use the “number” type and prefix the skeleton with ::

{0, number, ::compact-short currency/GBP}

Syntax

A token consists of a stem and zero or more options. The stem is what occurs before the first “/” character in a token, and the options are each of the subsequent “/”-delimited strings. For example, “compact-short” and “currency” are stems, and “GBP” is an option.

Stems might also be dynamic strings (not a fixed list); these are called blueprint stems. For example, to format a number with 2-3 significant digits, you could use the following stem:

@@#

A few examples of number skeletons are shown below. The list of available stems and options can be found below in Skeleton Stems and Options.

Examples

SkeletonInputen-US OutputComments
percent2525%
.002525.00Equivalent to Precision::fixedFraction(2)
percent .002525.00%
scale/1000.330Multiply by 100 before formatting
percent scale/1000.330%
measure-unit/length-meter55 mUnitWidth defaults to Short
measure-unit/length-meter
unit-width-full-name
55 meters
currency/CAD10CA$10.00
currency/CAD
unit-width-narrow
10$10.00Use the narrow symbol variant
compact-short50005K
compact-long50005 thousand
compact-short
currency/CAD
5000CA$5K
-50005,000
group-min250005000Require 2 digits in group for separator
group-min21500015,000
sign-always60+60Show sign on all numbers
sign-always0+0
sign-except-zero60+60Show sign on all numbers except 0
sign-except-zero00
sign-accounting
currency/CAD
-40(CA$40.00)

Skeleton Stems and Options

The full set of features supported by number skeletons is listed by category below.

Notation

Use one of the following stems to select your notation style:

  • compact-short
  • compact-long
  • scientific
  • engineering
  • notation-simple

The skeletons scientific and engineering take the following optional options:

  • /sign-xxx sets the sign display option for the exponent; see Sign.
  • /+ee sets exponent digits to “at least 2”; use /+eee for at least 3 digits, etc.

For example, all of the following skeletons are valid:

  • scientific
  • scientific/sign-always
  • scientific/+ee
  • scientific/+ee/sign-always

Unit

The supported types of units are percent, currency, and measurement units. The following skeleton tokens are accepted:

  • percent
  • permille
  • base-unit
  • currency/XXX
  • measure-unit/aaaa-bbbb

The percent, permille, and base-unit stems do not take any options.

The currency stem takes one required option: the three-letter ISO code of the currency to be formatted.

The measure-unit stem takes one required option: the unit identifier of the unit to be formatted. The full unit identifier is required: both the type and the subtype (for example, length-meter).

Per Unit

To specify a unit to put in the denominator, use the following skeleton token:

  • per-measure-unit/aaaa-bbbb

As with the measure-unit stem, pass the unit identifier as the option.

Unit Width

The unit width can be specified by the following stems:

  • unit-width-narrow
  • unit-width-short
  • unit-width-full-name
  • unit-width-iso-code
  • unit-width-hidden

For more details, see UNumberUnitWidth.

Precision

The precision category has more blueprint stems than most other categories; they are documented in detail below. The following non-blueprint stems are accepted:

  • precision-integer (round to the nearest integer) --- accepts fraction-precision options
  • precision-unlimited (do not perform rounding; display all digits)
  • precision-increment/dddd (round to dddd, a decimal number) --- see below
  • precision-currency-standard
  • precision-currency-cash

To round to the nearest nickel, for example, use the skeleton precision-increment/0.05. For more information on the decimal number syntax, see Scale.

Fraction Precision

The following are examples of fraction-precision stems:

StemExplanationEquivalent C++ Code
.00Exactly 2 fraction digitsPrecision::fixedFraction(2)
.00+At least 2 fraction digitsPrecision::minFraction(2)
.##At most 2 fraction digitsPrecision::maxFraction(2)
.0#Between 1 and 2 fraction digitsPrecision::minMaxFraction(1, 2)

More precisely, the fraction precision stem starts with ., then contains zero or more 0 symbols, which implies the minimum fraction digits. Then it contains either a +, for unlimited maximum fraction digits, or zero or more # symbols, which implies the minimum fraction digits when added to the 0 symbols.

Note that the stem . is considered valid and is equivalent to precision-integer.

Fraction-precision stems accept a single optional option: the minimum or maximum number of significant digits. This allows you to combine fraction precision with certain significant digits capabilities. The following are examples:

SkeletonExplanationEquivalent C++ Code
.##/@@@+At most 2 fraction digits, but guarantee
at least 3 significant digits
Precision::maxFraction(2)
.withMinDigits(3)
.00/@##Exactly 2 fraction digits, but do not
display more than 3 significant digits
Precision::fixedFraction(2)
.withMaxDigits(3)

Precisely, the option starts with one or more @ symbols. Then it contains either a +, for ::withMinDigits, or one or more # symbols, for ::withMaxDigits. If a # symbol is present, there must be only one @ symbol.

Significant Digits Precision

The following are examples of stems for significant figures:

StemExplanationEquivalent C++ Code
@@@Exactly 3 significant digitsPrecision::fixedSignificantDigits(3)
@@@+At least 3 significant digitsPrecision::minSignificantDigits(3)
@##At most 3 significant digitsPrecision::maxSignificantDigits(3)
@@#Between 2 and 3 significant digits...::minMaxSignificantDigits(2, 3)

The precise syntax is very similar to fraction precision. The blueprint stem starts with one or more @ symbols, which implies the minimum significant digits. Then it contains either a +, for unlimited maximum significant digits, or zero or more # symbols, which implies the minimum significant digits when added to the @ symbols.

Rounding Mode

The rounding mode can be specified by the following stems:

  • rounding-mode-ceiling
  • rounding-mode-floor
  • rounding-mode-down
  • rounding-mode-up
  • rounding-mode-half-even
  • rounding-mode-half-down
  • rounding-mode-half-up
  • rounding-mode-unnecessary

For more details, see Rounding Modes.

Integer Width

The following examples show how to specify integer width (minimum or maximum integer digits):

TokenExplanationEquivalent C++ Code
integer-width/+000At least 3
integer digits
IntegerWidth::zeroFillTo(3)
integer-width/##0Between 1 and 3
integer digits
IntegerWidth::zeroFillTo(1)
.truncateAt(3)
integer-width/00Exactly 2
integer digits
IntegerWidth::zeroFillTo(2)
.truncateAt(2)
integer-width/+Zero or more
integer digits
IntegerWidth::zeroFillTo(0)

The option start with either a single + symbols, signaling no limit on the number of integer digits (no truncateAt), or zero or more # symbols. It should then be followed by zero or more 0 symbols, indicating the minimum integer digits (the argument to zeroFillTo). If there is no + symbol, the maximum integer digits (the argument to truncateAt) is the number of # symbols plus the number of 0 symbols.

Scale

To specify the scale, use the following stem and option:

  • scale/dddd

where dddd is a decimal number. For example, the following are valid skeletons:

  • scale/100 (multiply by 100)
  • scale/1E2 (same as above)
  • scale/0.5 (multiply by 0.5)

The decimal number should conform to a standard decimal number syntax. In C++, it is parsed using the decimal number library described in LocalizedNumberFormatter::formatDecimal. In Java, it is parsed using BigDecimal. For maximum compatibility, it is highly recommended that your decimal number is able to be parsed by both engines.

Grouping

The grouping strategy can be specified by the following stems:

  • group-off
  • group-min2
  • group-auto
  • group-on-aligned
  • group-thousands

For more details, see UNumberGroupingStrategy.

Symbols

The following stems are allowed for specifying the number symbols:

  • latin (use Latin-script digits)
  • numbering-system/nnnn (use the nnnn numbering system)

A custom NDecimalFormatSymbols instance is not supported at this time.

Sign Display

The following stems specify sign display:

  • sign-auto
  • sign-always
  • sign-never
  • sign-accounting
  • sign-accounting-always
  • sign-except-zero
  • sign-accounting-except-zero

For more details, see UNumberSignDisplay.

Decimal Separator Display

The following stems specify decimal separator display:

  • decimal-auto
  • decimal-always

For more details, see UNumberDecimalSeparatorDisplay.