在Go語言中,可以使用range關鍵字來遍歷字符串。下面是一個簡單的例子:
package main
import (
"fmt"
)
func main() {
str := "Hello, World!"
for index, char := range str {
fmt.Printf("Character at index %d is %c\n", index, char)
}
}
在上面的例子中,我們使用range關鍵字遍歷字符串str,并輸出每個字符的索引和字符本身。輸出結果為:
Character at index 0 is H
Character at index 1 is e
Character at index 2 is l
Character at index 3 is l
Character at index 4 is o
Character at index 5 is ,
Character at index 6 is
Character at index 7 is W
Character at index 8 is o
Character at index 9 is r
Character at index 10 is l
Character at index 11 is d
Character at index 12 is !