Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

iterate over characters in a string

  • range
package main

import (
	"fmt"
)

func main() {
	text := "Hello World!"
	text = "שלום"
	text = "Gábor Szabó"
	text = "lò mañana 😈 mas"
	text = "¿Còmo estas?"
	fmt.Println(text)

	for i, chr := range text {
		fmt.Printf("index: %2v  chr: %c\n", i, chr)
	}
}