Crates.io | icu_decimal |
lib.rs | icu_decimal |
version | 2.0.0 |
created_at | 2021-04-29 18:31:39.507962+00 |
updated_at | 2025-05-07 20:59:08.951182+00 |
description | API for formatting basic decimal numbers in a locale-sensitive way |
homepage | https://icu4x.unicode.org |
repository | https://github.com/unicode-org/icu4x |
max_upload_size | |
id | 391183 |
size | 82,044 |
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.
use icu::decimal::input::Decimal;
use icu::decimal::DecimalFormatter;
use icu::locale::locale;
use writeable::assert_writeable_eq;
let formatter =
DecimalFormatter::try_new(locale!("bn").into(), Default::default())
.expect("locale should be present");
let decimal = Decimal::from(1000007);
assert_writeable_eq!(formatter.format(&decimal), "১০,০০,০০৭");
use icu::decimal::input::Decimal;
use icu::decimal::DecimalFormatter;
use icu::locale::Locale;
use writeable::assert_writeable_eq;
let formatter =
DecimalFormatter::try_new(Default::default(), Default::default())
.expect("locale should be present");
let decimal = {
let mut decimal = Decimal::from(200050);
decimal.multiply_pow10(-2);
decimal
};
assert_writeable_eq!(formatter.format(&decimal), "2,000.50");
Numbering systems specified in the -u-nu
subtag will be followed.
use icu::decimal::input::Decimal;
use icu::decimal::DecimalFormatter;
use icu::locale::locale;
use writeable::assert_writeable_eq;
let formatter = DecimalFormatter::try_new(
locale!("th-u-nu-thai").into(),
Default::default(),
)
.expect("locale should be present");
let decimal = Decimal::from(1000007);
assert_writeable_eq!(formatter.format(&decimal), "๑,๐๐๐,๐๐๗");
For more information on development, authorship, contributing etc. please visit ICU4X home page
.