func UnicodeIsHan(str string)(count int) {
for _, v := range str{
if unicode.Is(unicode.Han, v) {
count++
}
}
return count
}
统计字符串中汉字的个数
于 2021-03-01 13:23:11 首次发布
func UnicodeIsHan(str string)(count int) {
for _, v := range str{
if unicode.Is(unicode.Han, v) {
count++
}
}
return count
}