中文转拼音.
go get github.com/xuender/go-py
package main
import (
"fmt"
"github.com/xuender/go-py"
)
func main(){
fmt.Println(py.Pinyin("阿弥陀佛"))
fmt.Println(py.Pinyin("阿弥陀佛", py.Tone))
fmt.Println(py.Pinyin("阿弥陀佛", py.NoTone))
fmt.Println(py.Pinyin("阿弥陀佛", py.Init))
fmt.Println(py.Initials("阿弥陀佛"))
// output:
// [a1 mi2 tuo2 fu2]
// [ā mí tuó fú]
// [a mi tuo fu]
// [a m t f]
// amtf
}
py --help
go install github.com/xuender/go-py/cmd/py@latest
py 阿弥陀佛
py -i -s= 阿弥陀佛
py -t -h -hs=\; 阿弥陀佛
py -n 阿弥陀佛