Ai
16 Star 69 Fork 54

ShirDon-廖显东/Go语言高级开发与实战-随书代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
1.2.2-str5.go 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
ShirDon-廖显东 提交于 2022-04-27 09:13 +08:00 . 修复注释错误
//++++++++++++++++++++++++++++++++++++++++
// 《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中可以通过切
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/shirdonl/goAdvanced.git
git@gitee.com:shirdonl/goAdvanced.git
shirdonl
goAdvanced
Go语言高级开发与实战-随书代码
0f051d9f4e35

搜索帮助