forked from golang/hotime
66 lines
1.3 KiB
Markdown
66 lines
1.3 KiB
Markdown
# pinyin
|
|
|
|
[![Build Status](https://travis-ci.com/Chain-Zhang/pinyin.svg?branch=master)](https://travis-ci.com/Chain-Zhang/pinyin)
|
|
[![codecov](https://codecov.io/gh/Chain-Zhang/pinyin/branch/master/graph/badge.svg)](https://codecov.io/gh/Chain-Zhang/pinyin)
|
|
|
|
golang实现中文汉字转拼音
|
|
|
|
demo
|
|
|
|
```go
|
|
package main
|
|
|
|
import(
|
|
"fmt"
|
|
"github.com/chain-zhang/pinyin"
|
|
)
|
|
|
|
func main() {
|
|
str, err := pinyin.New("我是中国人").Split("").Mode(InitialsInCapitals).Convert()
|
|
if err != nil {
|
|
// 错误处理
|
|
}else{
|
|
fmt.Println(str)
|
|
}
|
|
|
|
str, err = pinyin.New("我是中国人").Split(" ").Mode(pinyin.WithoutTone).Convert()
|
|
if err != nil {
|
|
// 错误处理
|
|
}else{
|
|
fmt.Println(str)
|
|
}
|
|
|
|
str, err = pinyin.New("我是中国人").Split("-").Mode(pinyin.Tone).Convert()
|
|
if err != nil {
|
|
// 错误处理
|
|
}else{
|
|
fmt.Println(str)
|
|
}
|
|
|
|
str, err = pinyin.New("我是中国人").Convert()
|
|
if err != nil {
|
|
// 错误处理
|
|
}else{
|
|
fmt.Println(str)
|
|
}
|
|
}
|
|
```
|
|
|
|
输出
|
|
|
|
```bash
|
|
WoShiZhongGuoRen
|
|
wo shi zhong guo ren
|
|
wǒ-shì-zhōng-guó-rén
|
|
wo shi zhong guo ren
|
|
```
|
|
|
|
Mode 介绍
|
|
|
|
* `InitialsInCapitals`: 首字母大写, 不带音调
|
|
* `WithoutTone`: 全小写,不带音调
|
|
* `Tone`: 全小写带音调
|
|
|
|
Split 介绍
|
|
|
|
split 方法是两个汉字之间的分隔符. |