其他分享
首页 > 其他分享> > Go- rune

Go- rune

作者:互联网

s := "hello中国"
a := []rune(s)

for k, v := range a {
  fmt.Printf("%d - %c", k, v)
  fmt.Println()
}

//截取字符串
fmt.Println(string(a[5:]))

//字符个数
fmt.Println(utf8.RuneCountInString(s)) 
    

输出:

0 - h
1 - e
2 - l
3 - l
4 - o
5 - 中
6 - 国
中国
7

标签:string,RuneCountInString,utf8,fmt,Println,rune,Go
来源: https://www.cnblogs.com/mister-liu/p/16244113.html