DeviceManager/DeviceRepair.Models/RandomString.cs
2024-05-28 22:36:38 +08:00

67 lines
2.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Linq;
namespace DeviceRepair.Models
{
/// <summary>
/// 随机字符串对象
/// </summary>
public class RandomString
{
///<summary>
///生成随机字符串
///</summary>
///<param name="length">目标字符串的长度</param>
///<param name="useNum">是否包含数字1=包含,默认为包含</param>
///<param name="useLow">是否包含小写字母1=包含,默认为包含</param>
///<param name="useUpp">是否包含大写字母1=包含,默认为包含</param>
///<param name="useSpe">是否包含特殊字符1=包含,默认为不包含</param>
///<param name="custom">要包含的自定义字符,直接输入要包含的字符列表</param>
///<returns>指定长度的随机字符串</returns>
public static string GetRandomString(int length, bool useNum = true, bool useLow = true, bool useUpp = true, bool useSpe = false, 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 += "0123456789"; }
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;
}
public static string RandomChangeStringSequence(string originalString)
{
char[] vOriginalChars = originalString.ToArray();
char[] vCharTmp = new char[vOriginalChars.Length];
for (int i = 0; i < vCharTmp.Length; i++)
{
vCharTmp[i] = vOriginalChars[i];
}
//打乱数组中元素顺序
Random rand = new Random(DateTime.Now.Millisecond);
for (int i = 0; i < vCharTmp.Length; i++)
{
int x, y;
x = rand.Next(0, vCharTmp.Length);
do
{
y = rand.Next(0, vCharTmp.Length);
} while (y == x);
var t = vCharTmp[x];
vCharTmp[x] = vCharTmp[y];
vCharTmp[y] = t;
}
return new string(vCharTmp);
}
}
}