在 Golang 中可以透過使用 crypto/rand 套件中的 RandStringBytes 函數來產生隨機字串。此函數接受兩個參數,第一個參數指定要產生的隨機字串的長度,第二個參數是一個位元組數組,指定要使用的字元範圍。
在 Golang 中產生隨機字串非常簡單,只需使用 crypto/rand
套件中的 RandStringBytes
函數即可。
func RandStringBytes(n int, alphabet []byte) ([]byte, error)
其中:
n
指定要產生的隨機字串的長度。 alphabet
是一個位元組數組,指定要使用的字元範圍。 以下是使用RandStringBytes
函數產生隨機字串的範例:
package main import ( "crypto/rand" "fmt" ) func main() { n := 10 charset := []byte("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789") b, err := rand.RandStringBytes(n, charset) if err != nil { fmt.Println(err) return } fmt.Printf("随机字符串:%s\n", b) }
#產生指定長度的隨機字母數字字串:
package main import ( "crypto/rand" "fmt" ) func main() { n := 10 charset := []byte("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789") b, err := rand.RandStringBytes(n, charset) if err != nil { fmt.Println(err) return } fmt.Printf("随机字符串:%s\n", b) }
產生指定長度的隨機小寫字母字串:
package main import ( "crypto/rand" "fmt" ) func main() { n := 10 charset := []byte("abcdefghijklmnopqrstuvwxyz") b, err := rand.RandStringBytes(n, charset) if err != nil { fmt.Println(err) return } fmt.Printf("随机字符串:%s\n", b) }
產生指定長度的隨機十六進位字串:
package main import ( "crypto/rand" "fmt" ) func main() { n := 10 charset := []byte("0123456789abcdef") b, err := rand.RandStringBytes(n, charset) if err != nil { fmt.Println(err) return } fmt.Printf("随机字符串:%s\n", b) }
以上是如何在 Golang 中產生隨機字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!