https://github.com/flashcode/nb2fr
Convert integer number to literal French text.
https://github.com/flashcode/nb2fr
french integer literal
Last synced: about 1 month ago
JSON representation
Convert integer number to literal French text.
- Host: GitHub
- URL: https://github.com/flashcode/nb2fr
- Owner: flashcode
- License: gpl-3.0
- Created: 2020-11-15T09:41:52.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2026-01-30T19:25:25.000Z (about 2 months ago)
- Last Synced: 2026-01-31T11:43:24.404Z (about 2 months ago)
- Topics: french, integer, literal
- Language: Rust
- Homepage:
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Nb2fr
[](https://crates.io/crates/nb2fr)
[](https://github.com/flashcode/nb2fr/actions?query=workflow%3A%22CI%22)
[](https://api.reuse.software/info/github.com/flashcode/nb2fr)
Nb2fr converts integer numbers to literal French text.
Signed 128-bit integers are supported:
- from: `-170 141 183 460 469 231 731 687 303 715 884 105 728` (`i128::MIN` in Rust)
- to: `170 141 183 460 469 231 731 687 303 715 884 105 727` (`i128::MAX` in Rust).
## Usage
In Rust:
```rust
use nb2fr::nb2fr;
fn main() {
assert_eq!(nb2fr(123), "cent vingt-trois");
}
```
From command line:
```shell
$ nb2fr 0 -15 123456 6824718 715884105727
zéro
moins quinze
cent vingt-trois mille quatre cent cinquante-six
six millions huit cent vingt-quatre mille sept cent dix-huit
sept cent quinze milliards huit cent quatre-vingt-quatre millions cent cinq mille sept cent vingt-sept
```
## Copyright
Copyright © 2020-2026 [Sébastien Helleu](https://github.com/flashcode)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .