“Golang converte string em bytes e converte bytes para string” Respostas de código

Golang String para bytes

hello := []byte("hello-world")
Friendly Fox

Golang Byte para cordas

str:=string(data)
fmt.Print(str)
Rich Raccoon

Golang converte string em bytes e converte bytes para string

package main
 
import (
    "fmt"
)
 
func main() {
    var s string = "Hello World"
    sb := []byte(s)
     
    fmt.Println(sb)  // [72 101 108 108 111 32 87 111 114 108 100]
     
    fmt.Println(string(sb)) // Hello World
}
Grieving Gaur

Respostas semelhantes a “Golang converte string em bytes e converte bytes para string”

Perguntas semelhantes a “Golang converte string em bytes e converte bytes para string”

Mais respostas relacionadas para “Golang converte string em bytes e converte bytes para string” em Go

Procure respostas de código populares por idioma

Procurar outros idiomas de código