13 releases (7 stable)

1.5.0 May 28, 2024
1.4.0 Nov 16, 2023
1.3.2 Oct 3, 2023
1.2.0 Apr 14, 2023
0.3.0 Jul 30, 2021

#418 in Internationalization (i18n)

Download history 6467/week @ 2024-07-19 7889/week @ 2024-07-26 18496/week @ 2024-08-02 25965/week @ 2024-08-09 24282/week @ 2024-08-16 25295/week @ 2024-08-23 23560/week @ 2024-08-30 26916/week @ 2024-09-06 22056/week @ 2024-09-13 58759/week @ 2024-09-20 59678/week @ 2024-09-27 63090/week @ 2024-10-04 37924/week @ 2024-10-11 34320/week @ 2024-10-18 30880/week @ 2024-10-25 30622/week @ 2024-11-01

144,373 downloads per month
Used in 42 crates (13 directly)

Unicode-3.0

545KB
9K SLoC

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 Bangla digits

use fixed_decimal::FixedDecimal;
use icu::decimal::FixedDecimalFormatter;
use icu::locid::locale;
use writeable::assert_writeable_eq;

let fdf = FixedDecimalFormatter::try_new(
    &locale!("bn").into(),
    Default::default(),
)
.expect("locale should be present");

let fixed_decimal = FixedDecimal::from(1000007);

assert_writeable_eq!(fdf.format(&fixed_decimal), "১০,০০,০০৭");

Format a number with digits after the decimal separator

use fixed_decimal::FixedDecimal;
use icu::decimal::FixedDecimalFormatter;
use icu::locid::Locale;
use writeable::assert_writeable_eq;

let fdf =
    FixedDecimalFormatter::try_new(&Locale::UND.into(), Default::default())
        .expect("locale should be present");

let fixed_decimal = FixedDecimal::from(200050).multiplied_pow10(-2);

assert_writeable_eq!(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.

use fixed_decimal::FixedDecimal;
use icu::decimal::FixedDecimalFormatter;
use icu::locid::locale;
use writeable::assert_writeable_eq;

let fdf = FixedDecimalFormatter::try_new(
    &locale!("th-u-nu-thai").into(),
    Default::default(),
)
.expect("locale should be present");

let fixed_decimal = FixedDecimal::from(1000007);

assert_writeable_eq!(fdf.format(&fixed_decimal), "๑,๐๐๐,๐๐๗");

More Information

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

Dependencies

~1.1–2MB
~37K SLoC