golang学习笔记14 golang substring 截取字符串
golang 没有java那样的substring函数,但支持直接根据 index 截取字符串
mystr := "hello world"
fmt.Print(mystr[0:5])

05-01 02:44