-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpinyin.go
56 lines (48 loc) · 1.01 KB
/
pinyin.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// SPDX-FileCopyrightText: 2018 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later
package pinyin
import (
"strconv"
"strings"
"unicode"
)
func HansToPinyin(hans string) []string {
return getPinyinFromKey(hans)
}
func getPinyinFromKey(key string) []string {
rets := []string{}
for _, c := range key {
if unicode.Is(unicode.Scripts["Han"], c) {
array := getPinyinByHan(int64(c))
if len(rets) == 0 {
rets = array
continue
}
rets = rangeArray(rets, array)
} else {
array := []string{string(c)}
if len(rets) == 0 {
rets = array
} else {
rets = rangeArray(rets, array)
}
}
}
return rets
}
func getPinyinByHan(han int64) []string {
code := strconv.FormatInt(han, 16)
value := PinyinDataMap[strings.ToUpper(code)]
array := strings.Split(value, ";")
return array
}
func rangeArray(a1, a2 []string) []string {
rets := []string{}
for _, v := range a1 {
for _, r := range a2 {
rets = append(rets, v+r)
}
}
return rets
}