美文网首页
golang 计算字符串长度(包含汉字)

golang 计算字符串长度(包含汉字)

作者: 千罹 | 来源:发表于2018-08-20 15:34 被阅读513次
    package main
    
    import (
        "fmt"
        "unicode/utf8"
    )
    
    func main() {
        count := utf8.RuneCountInString("㕎檕獶栲")
        fmt.Print(count) // 4
    }
    

    相关文章

      网友评论

          本文标题:golang 计算字符串长度(包含汉字)

          本文链接:https://www.haomeiwen.com/subject/fbdliftx.html