#numbers #localization

say-number

提供英语、中文(简体)、法语、日语和越南语中读数的库

8 个版本 (1 个稳定版)

1.0.0 2020年1月23日
0.1.6 2020年1月3日
0.1.5 2019年12月30日

国际化(i18n) 中排名 #283

Download history 64/week @ 2024-07-26 5/week @ 2024-08-02

每月下载量 69

MIT 许可证

20KB
384

say-number

crates.io Build Status

提供英语、中文(简体)、法语、日语和越南语中读数的库。

快速入门

将以下内容添加到您的 Cargo.toml 文件中。

[dependencies]
say-number = "0.1"

示例

println!("The number is {}.", say_number::say(42));
assert_eq!(say_number::say(514), "five hundred and fourteen".to_string());
assert_eq!(say_number::english::say(514), "five hundred and fourteen".to_string());
assert_eq!(say_number::chinese_simplified::say(514), "五百一十四".to_string());
assert_eq!(say_number::french::say(514), "cinq-cent-quatorze".to_string());
assert_eq!(say_number::japanese::say(514), "五百十四".to_string());
assert_eq!(say_number::vietnamese::say(514), "năm trăm mười bốn".to_string());

依赖关系

~460KB