一、字符串(string)
1.1什么是string
Go中的字符串是一个字节的切肝。可以通过将其内容封装
在\”\”中来创建字符串。Go中的字符串是Unicode兼容的,并且是UTF-8编码的。
示例代码
name := \"hello world\"
1.2 string的使用
1.2.1访问字符串中的单个字节
len:返回字节个数,英文字母1个字节,中文三个字节
s1 := \"中国\"s2 := \"hello world\"fmt.Println(len(s1)) // 6fmt.Println(len(s2)) // 11// 获取第一个字节fmt.Println(s1[0]) // 228fmt.Println(s1[0:3]) // 中slice1 := []byte{65,66,67,68}s3 := string(slice1)fmt.Println(s3)// ABCD