mirror of
https://github.com/HDT3213/godis.git
synced 2025-10-06 01:07:06 +08:00
15 lines
316 B
Go
15 lines
316 B
Go
package utils
|
|
|
|
import "math/rand"
|
|
|
|
var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
|
|
|
|
// RandString create a random string no longer than n
|
|
func RandString(n int) string {
|
|
b := make([]rune, n)
|
|
for i := range b {
|
|
b[i] = letters[rand.Intn(len(letters))]
|
|
}
|
|
return string(b)
|
|
}
|