统计字符串中, 中文字符数
package main
import (
"unicode"
"fmt"
)
func ChineseCount(str1 string) (count int) {
for _, char := range str1{
if unicode.Is(unicode.Han, char){
count++
}
}
return
}
func main() {
str_obj := "Hello你好WorldGo语言真强"
result := ChineseCount(str_obj)
fmt.Println("result=", result)
}
有疑问加站长微信联系(非本文作者)