doc.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // Copyright 2017 The go-ego Project Developers. See the COPYRIGHT
  2. // file at the top-level directory of this distribution and at
  3. // https://github.com/go-ego/ego/blob/master/LICENSE
  4. //
  5. // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
  6. // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
  7. // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
  8. // option. This file may not be copied, modified, or distributed
  9. // except according to those terms.
  10. /*
  11. Package gpy : Chinese Pinyin conversion tool; 汉语拼音转换工具.
  12. Installation:
  13. go get -u github.com/go-ego/gpy
  14. Usage :
  15. package main
  16. import (
  17. "fmt"
  18. "github.com/go-ego/gpy"
  19. )
  20. func main() {
  21. hans := "中国人"
  22. // 默认
  23. a := gpy.NewArgs()
  24. fmt.Println(gpy.Pinyin(hans, a))
  25. // [[zhong] [guo] [ren]]
  26. // 包含声调
  27. a.Style = gpy.Tone
  28. fmt.Println(gpy.Pinyin(hans, a))
  29. // [[zhōng] [guó] [rén]]
  30. // 声调用数字表示
  31. a.Style = gpy.Tone2
  32. fmt.Println(gpy.Pinyin(hans, a))
  33. // [[zho1ng] [guo2] [re2n]]
  34. // 开启多音字模式
  35. a = gpy.NewArgs()
  36. a.Heteronym = true
  37. fmt.Println(gpy.Pinyin(hans, a))
  38. // [[zhong zhong] [guo] [ren]]
  39. a.Style = gpy.Tone2
  40. fmt.Println(gpy.Pinyin(hans, a))
  41. // [[zho1ng zho4ng] [guo2] [re2n]]
  42. }
  43. */
  44. package gpy