获取字符串的长度
- - 使用 bytes.Count() 统计
- - 使用 strings.Count() 统计
- - 将字符串转换为 []rune 后调用 len 函数进行统计
- - 使用 utf8.RuneCountInString() 统计
例:
- str:="HelloWord"
- l1:=len([]rune(str))
- l2:=bytes.Count([]byte(str),nil)-1)
- l3:=strings.Count(str,"")-1
- l4:=utf8.RuneCountInString(str)
- fmt.Println(l1)