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.

21 lines
302 B

  1. package Util
  2. import (
  3. "math/rand"
  4. )
  5. var (
  6. letterRunes = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
  7. )
  8. func RandomString(n int) string {
  9. var (
  10. b []rune
  11. i int
  12. )
  13. b = make([]rune, n)
  14. for i = range b {
  15. b[i] = letterRunes[rand.Intn(len(letterRunes))]
  16. }
  17. return string(b)
  18. }