Formatting basic decimal numbers.
This module is published as its own crate (icu_decimal
)
and as part of the icu
crate. See the latter for more details on the ICU4X project.
Support for currencies, measurement units, and compact notation is planned. To track progress, follow icu4x#275.
```rust use icu::decimal::FixedDecimalFormatter; use icu::locid::locale; use writeable::assertwriteableeq;
let fdf = FixedDecimalFormatter::trynewunstable( &icu_testdata::unstable(), &locale!("bn").into(), Default::default(), ) .expect("Data should load successfully");
let fixed_decimal = 1000007.into();
assertwriteableeq!(fdf.format(&fixed_decimal), "১০,০০,০০৭"); ```
```rust use fixeddecimal::FixedDecimal; use icu::decimal::FixedDecimalFormatter; use icu::locid::Locale; use writeable::assertwriteable_eq;
let fdf = FixedDecimalFormatter::trynewunstable( &icu_testdata::unstable(), &Locale::UND.into(), Default::default(), ) .expect("Data should load successfully");
let fixeddecimal = FixedDecimal::from(200050).multipliedpow10(-2);
assertwriteableeq!(fdf.format(&fixed_decimal), "2,000.50"); ```
Numbering systems specified in the -u-nu
subtag will be followed as long as the locale has
symbols for that numbering system.
```rust use icu::decimal::FixedDecimalFormatter; use icu::locid::locale; use writeable::assertwriteableeq;
let fdf = FixedDecimalFormatter::trynewunstable( &icu_testdata::unstable(), &locale!("th-u-nu-thai").into(), Default::default(), ) .expect("Data should load successfully");
let fixed_decimal = 1000007.into();
assertwriteableeq!(fdf.format(&fixed_decimal), "๑,๐๐๐,๐๐๗"); ```
For more information on development, authorship, contributing etc. please visit ICU4X home page
.