golang怎么遍历字符串

在 go 语言中遍历字符串的方法有:for-range 循环,迭代 unicode 码点。字节循环,迭代字节。字符串索引,获取特定字符。runeslice,访问 unicode 码点。转换为字节数组,获取字节表示。Go 语言遍历字符串的方法

在 go 语言中遍历字符串的方法有:for-range 循环,迭代 unicode 码点。字节循环,迭代字节。字符串索引,获取特定字符。runeslice,访问 unicode 码点。转换为字节数组,获取字节表示。

golang怎么遍历字符串

Go 语言遍历字符串的方法

在 Go 语言中,遍历字符串有以下几种方法:

1. for-range 循环

for-range 循环是遍历字符串最简单的方法。它迭代字符串中的每个 Unicode 码点(rune)。

str := "Hello, world!"

for _, r := range str {
    fmt.Printf("%c", r)
}

登录后复制

输出:

H e l l o ,   w o r l d !

登录后复制

2. 字节循环

字节循环迭代字符串中的每个字节。这对于处理二进制数据或非 UTF-8 编码的字符串很有用。

str := "Hello, world!"

for i := 0; i <p>输出:</p><p class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">H e l l o ,   w o r l d !

登录后复制

3. 字符串索引

字符串索引可以使用方括号 [] 获取特定字符。

str := "Hello, world!"

ch := str[0] // 'H'

登录后复制

4. RuneSlice

可以通过将字符串转换为 RuneSlice 来访问字符串中的 Unicode 码点。

str := "Hello, world!"

runes := []rune(str) // ['H', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd', '!']

登录后复制

5. 转换为字节数组

可以通过将字符串转换为字节数组来获取其字节表示。

str := "Hello, world!"

bytes := []byte(str) // [72 101 108 108 111 44 32 119 111 114 108 100 33]

登录后复制

以上就是golang怎么遍历字符串的详细内容,更多请关注叮当号网其它相关文章!

文章来自互联网,只做分享使用。发布者:牧草,转转请注明出处:https://www.dingdanghao.com/article/530575.html

(0)
上一篇 2024-05-26 20:40
下一篇 2024-05-26 20:40

相关推荐

联系我们

在线咨询: QQ交谈

邮件:442814395@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信公众号