“Golang génère une chaîne aléatoire” Réponses codées

String aléatoire GO

const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"

func RandStringBytes(n int) string {
    b := make([]byte, n)
    for i := range b {
        b[i] = letterBytes[rand.Intn(len(letterBytes))]
    }
    return string(b)
}
Restu Wahyu Saputra

Golang génère une chaîne aléatoire

package main

import (
    "fmt"
    "time"
    "math/rand"
)

var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")

func randSeq(n int) string {
    b := make([]rune, n)
    for i := range b {
        b[i] = letters[rand.Intn(len(letters))]
    }
    return string(b)
}

func main() {
    rand.Seed(time.Now().UnixNano())

    fmt.Println(randSeq(10))
}
Defiant Dove

String aléatoire GO

func StringWithCharset(length int, charset string) string {
  b := make([]byte, length)
  for i := range b {
    b[i] = charset[seededRand.Intn(len(charset))]
  }
  return string(b)
}
Restu Wahyu Saputra

Réponses similaires à “Golang génère une chaîne aléatoire”

Questions similaires à “Golang génère une chaîne aléatoire”

Plus de réponses similaires à “Golang génère une chaîne aléatoire” dans Go

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code