代码拉取完成,页面将自动刷新
//++++++++++++++++++++++++++++++++++++++++
// 《Go语言高级开发与实战》源码
//++++++++++++++++++++++++++++++++++++++++
// Author:廖显东(ShirDon)
// Blog:https://www.shirdon.com/
// 知乎:https://www.zhihu.com/people/shirdonl
// 公众号:源码大数据
// 仓库地址:https://gitee.com/shirdonl/goAdvanced
// 仓库地址:https://github.com/shirdonl/goAdvanced
//++++++++++++++++++++++++++++++++++++++++
package main
import (
"fmt"
"unicode/utf8"
)
func main() {
//声明一个字符串变量str
str := "在Go中可以通过切片截取一个数组或字符串"
//打印字符串长度
fmt.Println(utf8.RuneCountInString(str))
//打印字节长度
fmt.Println(len(str))
//获取字符串的前9个字符
str1 := str[0:9]
//打印
fmt.Println(str1)
//将字符串转为[]rune类型
nameRune := []rune(str)
//打印转换后的长度
fmt.Println(len(nameRune))
//打印截取后的字符串前9个字符
fmt.Println("string = ", string(nameRune[0:9]))
}
//20
//56
//在Go中�
//20
//string = 在Go中可以通过切
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。