#numbers #separator #formatting #comma

thousands

Adds digit separators to numbers, configurably

6 releases

Uses old Rust 2015

0.2.0 Oct 20, 2019
0.1.4 Oct 20, 2019
0.1.2 Sep 18, 2018

#52 in Value formatting

Download history 73296/week @ 2024-06-20 70142/week @ 2024-06-27 63062/week @ 2024-07-04 66906/week @ 2024-07-11 73871/week @ 2024-07-18 71304/week @ 2024-07-25 65847/week @ 2024-08-01 78277/week @ 2024-08-08 73973/week @ 2024-08-15 77228/week @ 2024-08-22 82249/week @ 2024-08-29 81991/week @ 2024-09-05 73461/week @ 2024-09-12 75326/week @ 2024-09-19 76798/week @ 2024-09-26 72240/week @ 2024-10-03

311,733 downloads per month
Used in 152 crates (56 directly)

MIT/Apache

22KB
376 lines

thousands

Build Status Crates.io License: MIT License: Apache 2.0

Provides a trait, Separable, for formatting numbers with separators between the digits. Typically this will be used to add commas or spaces every three digits from the right, but can be configured via a SeparatorPolicy.

Examples

The simplest way to use the library is with trait Separable’s method separate_with_commas method, which does what it sounds like:

use thousands::Separable;

 assert_eq!(   12345  .separate_with_commas(),  "12,345" );
 assert_eq!( (-12345) .separate_with_commas(), "-12,345" );
 assert_eq!(    9876.5.separate_with_commas(),   "9,876.5" );

There are also methods separate_with_spaces, separate_with_dots, and separate_with_underscores, in case you, your culture, or your file format prefer those separators.

However, it's also possible to pass a policy for different behavior:

use thousands::{Separable, SeparatorPolicy, digits};

let policy = SeparatorPolicy {
    separator: ',',
    groups:    &[3, 2],
    digits:    digits::ASCII_DECIMAL,
};

assert_eq!( 1234567890.separate_by_policy(policy), "1,23,45,67,890" );

Usage

It’s on crates.io, so you can add

[dependencies]
thousands = "0.2.0"

to your Cargo.toml.

This crate supports Rust version 1.22 and newer.

No runtime deps