icu_decimal crates.io

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.

Examples

Format a number with Bengali digits

```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), "১০,০০,০০৭"); ```

Format a number with digits after the decimal separator

```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"); ```

Format a number using an alternative numbering system

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), "๑,๐๐๐,๐๐๗"); ```

More Information

For more information on development, authorship, contributing etc. please visit ICU4X home page.