#plural #word-count #singular #pluralize #npm-package

pluralizer

Rust package to pluralize or singularize any word based on a count inspired on pluralize NPM package

6 releases (3 breaking)

0.4.0 Mar 9, 2023
0.3.2 Feb 28, 2022
0.2.0 Feb 28, 2022
0.1.0 Feb 25, 2022

#292 in Text processing

Download history 375/week @ 2023-12-06 494/week @ 2023-12-13 400/week @ 2023-12-20 354/week @ 2023-12-27 523/week @ 2024-01-03 690/week @ 2024-01-10 1314/week @ 2024-01-17 585/week @ 2024-01-24 528/week @ 2024-01-31 663/week @ 2024-02-07 552/week @ 2024-02-14 578/week @ 2024-02-21 902/week @ 2024-02-28 987/week @ 2024-03-06 740/week @ 2024-03-13 776/week @ 2024-03-20

3,554 downloads per month
Used in 12 crates (8 directly)

MIT/Apache

41KB
1K SLoC

pluralizer

Rust package to pluralize or singularize any word based on a count inspired on pluralize NPM package.

It will keep plurals are plurals if the count given is not 1, either way, it is going to keep the singular form if the count given is 1

Rust Latest version Documentation License

Getting Started

pluralizer.rs is available on crates.io. It is recommended to look there for the newest released version, as well as links to the newest builds of the docs.

At the point of the last update of this README, the latest published version could be used like this:

Add the following dependency to your Cargo manifest...

[dependencies]
pluralizer = "0.3.1"

...and see the docs for how to use it.

Example

use pluralizer::pluralize;

fn main() {
    pluralizer::initialize();

    // It can convert to plural
    println!("{}", pluralizer::pluralize("House", 2, true)); // 2 Houses

    // But also can convert to singular
    println!("{}", pluralizer::pluralize("Houses", 1, true)); // 1 House

    // And keep singularization if needed
    println!("{}", pluralizer::pluralize("House", 1, false)); // House

    // Or keep pluralization
    println!("{}", pluralizer::pluralize("Houses", 2, false)); // Houses
}

License

Licensed under either of

at your option

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~2.2–3MB
~54K SLoC