1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-24 10:54:43 -05:00
sub2clash/utils/random_string.go

14 lines
320 B
Go
Raw Normal View History

2023-09-17 03:52:37 -04:00
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)
}