#separator #group #delimiter #decimal #thousands

digit_group

Provides grouping (thousands separators) for numeric types

1 unstable release

Uses old Rust 2015

0.1.0 Feb 6, 2017

#3 in #thousands

Download history 3433/week @ 2024-12-11 1936/week @ 2024-12-18 1347/week @ 2024-12-25 4347/week @ 2025-01-01 4819/week @ 2025-01-08 3809/week @ 2025-01-15 6124/week @ 2025-01-22 5227/week @ 2025-01-29 3728/week @ 2025-02-05 4380/week @ 2025-02-12 5337/week @ 2025-02-19 6372/week @ 2025-02-26 5882/week @ 2025-03-05 7328/week @ 2025-03-12 5503/week @ 2025-03-19 6479/week @ 2025-03-26

26,523 downloads per month
Used in 2 crates

Apache-2.0

14KB
215 lines

digit_group

This is a small Rust crate that provides grouping (aka "thousands separators") for numeric types.

Usage

Cargo.toml:

[dependencies]
digit_group = "0.1"

main.rs:

extern crate digit_group;
use digit_group{FormatGroup,custom_group};

fn main() {
    let x: f64 = 12345678.112233;

    // Typical usage. 
    x.format_commas();                   // 12,345,678.112233
    x.format_si('.');                    // 12 345 678.112 233
    
    // Customizable groupings, decimal marks, and grouping delimiters.
    x.format_custom('#',':',4,2, false); // 12:34:5678#112233
    
    // Customizing precision prior to grouping.
    let y = 5512.332;
    let pre_formatted = format!("{:.4}", x);
    custom_group(&pre_formatted, ',', ' ', 3, 3, false); // 5 512,3320
}

No runtime deps