博客 / 詳情

返回

Golang-unicode

//對字符串中漢字數量進行統計
//unicode.Is()

package main

import (
    "fmt"
    "unicode"
)

//Han表示漢字,其它語言表達可在字符集中查詢
func main() {
    a := "すごい,今天你pass了English考試"
    count := 0
    for _, v := range a {
        if unicode.Is(unicode.Han, v) { 
            count++
        }
    }
    fmt.Println(count)
}

運行結果:
6

user avatar
0 位用戶收藏了這個故事!

發佈 評論

Some HTML is okay.