struCoder / Go-pinyin

hàn zì pīn yīn for Golang

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Han yu pin yin package for Golang

Get Pinyin Of Simplified Chinese

Change log

2017-04-24

  1. fix STYLE_FIRST_LETTER

2016-06-21

  1. optimized code

2016-03-18

  1. optimize performance(resolve out of slice len when building)

Install

In you project root path just run go get github.com/struCoder/Go-pinyin

Test

go test

How to Use

import (
  "fmt"
  "github.com/struCoder/Go-pinyin"
)

func main() {
  str := "**"
  str1 := "重阳"
  py := pinyingo.NewPy(pinyingo.STYLE_TONE, pinyingo.NO_SEGMENT)       //string with tone        -> **: ["zhōng", "guó"]
  //py := pinyingo.NewPy(pinyingo.STYLE_NORMAL, pinyingo.NO_SEGMENT)   //string without tone     -> **: ["zhong", "guo"]
  //py := pinyingo.NewPy(pinyingo.STYLE_INITIALS, pinyingo.NO_SEGMENT) // get initials of string -> **: ["zh", "g"]

  //segment
  py := pinyingo.NewPy(pinyingo.STYLE_TONE, pinyingo.USE_SEGMENT)       //string with tone        -> 重阳: ["chóng", "yáng"]

  fmt.Println(py.Convert(str))
}

Features

  • convert han zi to pinyin
  • get han zi initial
  • deal with segment

support this project :)

Paypal Alipay
paypal alipay

License

MIT

About

hàn zì pīn yīn for Golang

License:MIT License


Languages

Language:Go 100.0%