“string aleatória go” Respostas de código

string aleatória 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

string aleatória 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

Respostas semelhantes a “string aleatória go”

Perguntas semelhantes a “string aleatória go”

Mais respostas relacionadas para “string aleatória go” em Go

Procure respostas de código populares por idioma

Procurar outros idiomas de código