Go 判断中文英字符
May 24, 2022
1 min read
func isHan(runeVal rune) string { if unicode.Is(unicode.Han, runeVal) { return "en" } return "zh" }