zoukankan
html css js c++ java
创建随机字符串
1
/**/
///
<summary>
2
///
创建随机字符串
3
///
</summary>
4
///
<param name="codeCount">
随机数的位数
</param>
5
///
<returns></returns>
6
public
static
string
CreateRandomCode_Len54(
int
codeCount)
7
{
8
string
allChar
=
"
1,A,2,S,3,D,4,F,5,G,6,H,7,J,8,K,9,L,8,M,7,N,6,B,5,V,4,C,3,X,2,Z,1,P,9,Q,8,Z,7,W,6,I,5,E,4,U,3,R,2,Y,1,T,E,X,G,Q
"
;
9
string
[] allCharArray
=
allChar.Split(
'
,
'
);
10
string
randomCode
=
""
;
11
int
temp
=
-
1
;
12
13
Random rand
=
new
Random();
14
for
(
int
i
=
0
; i
<
codeCount; i
++
)
15
{
16
if
(temp
!=
-
1
)
17
{
18
rand
=
new
Random(i
*
temp
*
((
int
)DateTime.Now.Ticks));
19
}
20
int
t
=
rand.Next(
54
);
21
if
(temp
==
t)
22
{
23
return
CreateRandomCode_Len54(codeCount);
24
}
25
temp
=
t;
26
randomCode
+=
allCharArray[t];
27
}
28
return
randomCode;
29
}
查看全文
相关阅读:
Ubuntu
SSH
Markdown
Mac OS 上的一些骚操作
Linux Bash
JConsole
IDEA
Groovy
Github
Git
原文地址:https://www.cnblogs.com/ghd258/p/270438.html
最新文章
html5 移动页面自适应屏幕宽度
rem 之js代码获取font-size值(适合移动手机端)
html5 banner滚屏不用插件版
20160616 html5练习代码一
html5 图册
html5 选项卡
自适应网页的制作
js 通用代码(部分)
html5 风车特效
clientWidth clientHeight等网页属性
热门文章
12.typescript-枚举
11.typescript-元组
10.typescript-字符串字面量类型
9.typescript-内置对象
JavaScript箭头函数(Lambda表达式)
8.typescript-函数的类型
7.typescript-数组的类型
6.typescript-对象的类型-接口
获取URL上传的参数
给body设置overflow:hidden在移动端不管用
Copyright © 2011-2022 走看看