We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Num2Words::parse
use num2words::Num2Words; fn main() { let zero_one = Num2Words::parse("01").unwrap().to_words().unwrap(); println!("{zero_one}"); }
one
Note: zero one is a valid alternative, but 010 yields ten, not zero ten.
zero one
010
ten
zero ten
one duodecillion
This behavior holds for all inputs matching the pattern: 0[1-9] (exactly two digits where the first digit is zero and the second digit is not zero).
0[1-9]
The text was updated successfully, but these errors were encountered:
The underlying cause is in the num-bigfloat crate.
num-bigfloat
Sorry, something went wrong.
Update num-bigfloat dependency to 1.7.1
a8593b1
Fixes: Ballasi#23
Update num-bigfloat dependency to 1.7.1 (#24)
3e50713
Fixes: #23
Successfully merging a pull request may close this issue.
Minimal Reproducer
Expected Output
Actual Output
Commentary
This behavior holds for all inputs matching the pattern:
0[1-9]
(exactly two digits where the first digit is zero and the second digit is not zero).The text was updated successfully, but these errors were encountered: