A Rust crate for formatting numbers into the "Lakh Crore" (...हजार, लाख, करोड, अर्ब...) system.
lakh-crore-numbers is available on crates.io:
toml
[dependencies]
lakh-crore-numbers = "0.1.0"
The current goal of the library is to be format numbers into two types of representation. - Number expressed as numeral in the target language - Number expressed as words in the target language
A handful of functions are made publicly available to facilitate this.
```rust use lakhcrorenumbers as lcn;
asserteq!(lcn::formattonepalinumeral(295678), "२९५६७८"); ```
```rust use lakhcrorenumbers as lcn;
asserteq!( lcn::formattonepaliwords(8359), Ok(String::from("आठ हजार तीन सय उनन्साट्ठी"))); ```
Please take a look at the official documentation as well.
Please check the CHANGELOG.md for details.
Copyright © 2021, Suvash Thapaliya
Distributed under the ISC License.