标签:int fun div 使用 imp UNC rgb print 下标
package main import "fmt" func main() { s := "Hello World!" fmt.Println(s[0]) //使用下标索引 72 fmt.Println(s[:5])//切片 hello }
字符串 中截取的
索引获取字符串对应位置上存储的字节值,使用切片操作符获取字符串的一个子串
标签:int fun div 使用 imp UNC rgb print 下标
原文地址:https://www.cnblogs.com/kevin-yang123/p/14827653.html