1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-24 12:14:42 -05:00
sub2clash/utils/random_string.go
2023-09-17 15:52:37 +08:00

14 lines
320 B
Go

package utils
import "math/rand"
func RandomString(length int) string {
// 生成随机字符串
const charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
var result []byte
for i := 0; i < length; i++ {
result = append(result, charset[rand.Intn(len(charset))])
}
return string(result)
}