Crates.io | pinyin_zhuyin |
lib.rs | pinyin_zhuyin |
version | 0.2.0 |
source | src |
created_at | 2017-12-23 03:46:35.792607 |
updated_at | 2023-06-11 04:29:57.965666 |
description | Convert between pinyin forms and zhuyin |
homepage | |
repository | https://github.com/gnuish/pinyin-zhuyin |
max_upload_size | |
id | 44100 |
size | 29,529 |
A library to convert between pinyin and zhuyin.
The original library is Bomin Zhang's Go library "zhuyin".
https://github.com/localvar/zhuyin (Golang version)
https://github.com/DictPedia/ZhuyinPinyin (PHP version)
Add this to your Cargo.toml
:
[dependencies]
pinyin_zhuyin = "0.2"
encode_pinyin("zhang1") // zhāng
decode_pinyin("zhāng") // zhang1
encode_zhuyin("zhang1") // ㄓㄤ
decode_zhuyin("ㄓㄤ") // zhang1
pinyin_to_zhuyin("zhāng") // ㄓㄤ
zhuyin_to_pinyin("ㄓㄤ") // zhāng
split("zhang1") // ("zh", "ang", 1)