“Golang gera string aleatória” 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

Golang gera string aleatória

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 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 “Golang gera string aleatória”

Perguntas semelhantes a “Golang gera string aleatória”

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

Procure respostas de código populares por idioma

Procurar outros idiomas de código