在 Golang 中,每个中文字,占3个byte。英文字符仍是占一个byte。
//纯汉字字符串截取 s1 := "中华人民共和国" //要截取首个 fmt.Println(s1[0:3]) //截取最后一个字符 fmt.Println(s1[len(s1)-3:len(s1)])