Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/a4-tacks/zh_num
转换ASCII数字和中文数字
https://github.com/a4-tacks/zh_num
number-to-words zh-cn
Last synced: about 2 months ago
JSON representation
转换ASCII数字和中文数字
- Host: GitHub
- URL: https://github.com/a4-tacks/zh_num
- Owner: A4-Tacks
- License: mit
- Created: 2024-06-24T11:29:39.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-11T10:59:34.000Z (5 months ago)
- Last Synced: 2024-10-13T21:39:27.278Z (3 months ago)
- Topics: number-to-words, zh-cn
- Language: Rust
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
转换ASCII数字和中文数字的实用程序
# Examples
```shell
$ zh_num -h
Usage: zh_num [OPTIONS]
将ASCII数字和中文数字相互转换Options:
-d 反向转换, 也就是将ASCII数字转换成中文数字
-D 类似 -d, 但是中文数字是大写
-r 转换时保留结果之外的文本
-s 识别时跳过一部分字符, 如果给定了-r则会留在结果中 [default: 0]
-v, --version Print version
-h, --help Print help[email protected]
A4-Tacks
$ zh_num
1234
1234
一千二百三十四
1234
六万
60000
十三
13
肆佰贰拾
420
$ zh_num -d
1234
一千二百三十四
286639
二十八万六千六百三十九
10086
一万零八十六
$ zh_num -D
2333
贰仟叁佰叁拾叁
$ zh_num -ds1
第2章
二
$ zh_num -drs1
第2章
第二章
$ zh_num -rs1
第四章
第4章
```Install
===============================================================================
Install executable file:```shell
cargo install zh_num --features bin
```Add as a dependencies:
```shell
cargo add zh_num
```