///
///
/// 目标字符串的长度
/// 是否包含数字,1=包含,默认为包含
/// 是否包含小写字母,1=包含,默认为包含
/// 是否包含大写字母,1=包含,默认为包含
/// 是否包含特殊字符,1=包含,默认为不包含
/// 要包含的自定义字符,直接输入要包含的字符列表
///
指定长度的随机字符串
public string GetRnd(int length, bool useNum, bool useLow, bool useUpp, bool useSpe, string custom)
{
byte[] b = new byte[4];
new System.Security.Cryptography.RNGCryptoServiceProvider().GetBytes(b);
Random r = new Random(BitConverter.ToInt32(b, 0));
string s = null, str = custom;
if (useNum == true) { str += “0”; }
if (useLow == true) { str += “abcdefghijklmnopqrstuvwxyz”; }
if (useUpp == true) { str += “ABCDEFGHIJKLMNOPQRSTUVWXYZ”; }
if (useSpe == true) { str += “!\”#$%&'()*+,-./:;<=>?@[\\]^_`{|}~”; }
for (int i = 0; i < length; i++)
{
s += str.Substring(r.Next(0, str.Length – 1), 1);
}
return s;
}
发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/217247.html原文链接:https://javaforall.net
