点击运行
package main import ( "fmt" ) func charsAndBytePosition(s string) { for index, rune := range s { fmt.Printf("%c 从字节 %d 处开始\n", rune, index) } } func main() { name := "迹忆客" charsAndBytePosition(name) }
运行结果 :
正在执行...