“Golang generuje losowy ciąg” Kod odpowiedzi

losowy ciąg idź

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 generuje losowy ciąg

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

losowy ciąg idź

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

Odpowiedzi podobne do “Golang generuje losowy ciąg”

Pytania podobne do “Golang generuje losowy ciąg”

Więcej pokrewnych odpowiedzi na “Golang generuje losowy ciąg” w Go

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu