“Golang String aux octets” Réponses codées

Golang String aux octets

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

Allez de la chaîne vers le tableau d'octets

b := []byte("ABC€")
s := string([]byte{65, 66, 67, 226, 130, 172})
Zealous Zebra

golang [] octet à la chaîne

s := string([]byte{65, 66, 67, 226, 130, 172})
fmt.Println(s) // ABC€
Worrisome Wasp

Golang convertit la chaîne en octets et convertit les octets en chaîne

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

Réponses similaires à “Golang String aux octets”

Questions similaires à “Golang String aux octets”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code