作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有一种快速的方法来生成固定长度的随 secret 码? (例如8位数字,字母/数字/下划线)
最佳答案
user> (defn fixed-length-password
([] (fixed-length-password 8))
([n]
(let [chars (map char (range 33 127))
password (take n (repeatedly #(rand-nth chars)))]
(reduce str password))))
#'user/fixed-length-password
user> (fixed-length-password 10)
;=> "N&L[yyLUI4"
user> (fixed-length-password 10)
;-> "8JSF-:?si."
user> (fixed-length-password 10)
;=> "EbKS~?*J*h"
关于clojure - 如何在Clojure中生成固定长度的随 secret 码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27053726/
我是一名优秀的程序员,十分优秀!