You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
453 B
23 lines
453 B
2 years ago
|
package util
|
||
|
|
||
|
import (
|
||
|
"math/rand"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// RandomString
|
||
|
//
|
||
|
// @Description: 随机字符串
|
||
|
// @param length
|
||
|
// @return string
|
||
|
func RandomString(length int) string {
|
||
|
str := "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||
|
bytes := []byte(str)
|
||
|
var result []byte
|
||
|
r := rand.New(rand.NewSource(time.Now().UnixNano()))
|
||
|
for i := 0; i < length; i++ {
|
||
|
result = append(result, bytes[r.Intn(len(bytes))])
|
||
|
}
|
||
|
return string(result)
|
||
|
}
|