微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

golang生成指定位数的字符串数字、大小写字母

package main
 
import(
    "fmt"
    "time"
    "math/rand"
)
 
const (
    KC_RAND_KIND_NUM   = 0  // 纯数字
    KC_RAND_KIND_LOWER = 1  // 小写字母
    KC_RAND_KIND_UPPER = 2  // 大写字母
    KC_RAND_KIND_ALL   = 3  // 数字、大小写字母
)
 
// 随机字符串
func Krand(size int,kind int) []byte {
    ikind,kinds,result := kind,[][]int{[]int{10,48},[]int{26,97},65}},make([]byte,size)
    is_all := kind > 2 || kind < 0
    rand.Seed(time.Now().UnixNano())
    for i :=0; i < size; i++ {
        if is_all { // random ikind
            ikind = rand.Intn(3)
        }
        scope,base := kinds[ikind][0],kinds[ikind][1]
        result[i] = uint8(base+rand.Intn(scope))
    }
    return result
}
 
func main(){
    fmt.Println("num:   " + string(Krand(16,KC_RAND_KIND_NUM)))
    fmt.Println("lower: " + string(Krand(16,KC_RAND_KIND_LOWER)))
    fmt.Println("upper: " + string(Krand(16,KC_RAND_KIND_UPPER)))
    fmt.Println("all:   " + string(Krand(16,KC_RAND_KIND_ALL)))
}

运行效果
num: 1724754808278598
lower: rvuwvrmamuafuxpg
upper: RVUWVRMAMUAFUXPG
all: VWrA875Gg80U07GP
 

 原文引自:https://www.oschina.net/code/snippet_170216_50650

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐