Skip to content

Instantly share code, notes, and snippets.

@arxdsilva
Created May 10, 2019 22:52
Show Gist options
  • Save arxdsilva/6f9dc414814f08aca47e3221d3ca7fa3 to your computer and use it in GitHub Desktop.
Save arxdsilva/6f9dc414814f08aca47e3221d3ca7fa3 to your computer and use it in GitHub Desktop.
utf8 rune count in string
package main
import "fmt"
import "unicode/utf8"
func main() {
fmt.Println("Hello, 世界", len("世界"), utf8.RuneCountInString("世界"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment