Home > Backend Development > Golang > How to Access Individual Characters in a Go String Instead of Their Numerical Values?

How to Access Individual Characters in a Go String Instead of Their Numerical Values?

DDD
Release: 2024-12-13 03:13:13
Original
466 people have browsed it

How to Access Individual Characters in a Go String Instead of Their Numerical Values?

Accessing Characters in a Go String

This question explores how to access characters within a Go string, delving into the nature of strings as slices of bytes and the relationship between characters, runes, and Unicode code points.

Original Question:

How can I obtain the "E" character instead of the numerical value 69 when accessing "HELLO"[1]?

Answer:

To retrieve characters from a string, one must understand Go's character representation. Interpreted string literals are sequences of characters encoded in UTF-8, where ASCII characters occupy just one byte. Hence, to get the "E" character, the following conversion is necessary:

fmt.Println(string("Hello"[1])) // ASCII only
Copy after login

Alternative: Using Runes

For Unicode support, runes, which represent Unicode code points, can be used. These are compatible with UTF-8 strings:

fmt.Println(string([]rune("Hello, 世界")[1])) // UTF-8
Copy after login

This code will output the "e" character.

Go's Character Handling Capabilities

It's worth noting that Go provides functions for converting between characters and bytes. For instance, the byte(c) method converts a character (rune) to its corresponding byte, while rune(b) converts a byte to a character.

Additional Readings:

  • [Go Programming Language Specification section on Conversions](https://go.dev/ref/spec#Conversions)
  • [The Go Blog: Strings, bytes, runes and characters in Go](https://blog.golang.org/strings)

The above is the detailed content of How to Access Individual Characters in a Go String Instead of Their Numerical Values?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template