码迷,mamicode.com
首页 > 其他好文 > 详细

go中字符串的切片和索引使用

时间:2021-06-02 17:08:39      阅读:0      评论:0      收藏:0      [点我收藏+]

标签: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
}

字符串 中截取的

索引获取字符串对应位置上存储的字节值,使用切片操作符获取字符串的一个子串

 

go中字符串的切片和索引使用

标签:int   fun   div   使用   imp   UNC   rgb   print   下标   

原文地址:https://www.cnblogs.com/kevin-yang123/p/14827653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!