码迷,mamicode.com
首页 > 其他好文 > 详细

生成随机字母数字组合

时间:2015-04-23 10:54:12      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

//生成随机字母数字组合
public static string CreateRandom(int codeCount)
{
string allChar = "2,3,4,5,6,7,8,9,a,b,c,d,e,f,g,h,i,j,k,m,n,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,J,K,L,M,N,P,Q,R,S,T,U,V,W,X,Y,Z";

string[] allCharArray = allChar.Split(,);
string randomCode = "";
int temp = -1;
Random random = new Random();
for (int i = 0; i < codeCount; i++)
{
if (temp != -1)
{
random = new Random(i * temp * (int)DateTime.Now.Ticks);
}
int t = random.Next(35);
if (temp == t)
{
return CreateRandom(codeCount);
}
temp = t;
randomCode += allCharArray[temp];
}
return randomCode;
}
codeCount代表需要生成的字符串长度

生成随机字母数字组合

标签:

原文地址:http://www.cnblogs.com/huangfenggu/p/4449678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!