Theres a lot of answers here and many of the answers gives you a working example of how to generate a random string. However some of the answers have some limitations. The "guid" method limits you to 32 characters, the .Membership.GeneratePassword() limits you to 128 characters and some of the methods gives you no control over what kind of characters you will have in your random string (eg special characters, numbers, uppercase/lowercase)
Another important thing here is performance. Which method performs best?
I had to test this, so I created a Console App to test which one is best:
Here is all the 7 different Random functions:
private static readonly Random Random = new Random((int)DateTime.Now.Ticks);
/// <summary>
/// Random string using System.Security.Cryptography.RandomNumberGenerator class
/// </summary>
/// <param name="length"></param>
/// <returns></returns>
public static string RandomString1(int length)
{
var randBuffer = new byte[length];
RandomNumberGenerator.Create().GetBytes(randBuffer);
return System.Convert.ToBase64String(randBuffer).Remove(length);
}
/// <summary>
/// Loop throug a string of characters and add using string +=
/// </summary>
/// <param name="length"></param>
/// <returns></returns>
public static string RandomString2(int length)
{
const string characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
var l = characters.Length;
var s = "";
for (var i = 0; i < length; i++)
{
s += characters[Random.Next(0, l)];
}
return s;
}
/// <summary>
/// Loop throug a string of characters and add using StringBuilder class
/// </summary>
/// <param name="length"></param>
/// <returns></returns>
public static string RandomString3(int length)
{
const string characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
var l = characters.Length;
var s = new StringBuilder();
for (var i = 0; i < length; i++)
{
s.Append(characters[Random.Next(0, l)]);
}
return s.ToString();
}
/// <summary>
/// Random string using Membership.GeneratePassword() method
/// </summary>
/// <param name="length"></param>
/// <returns></returns>
public static string RandomString4(int length)
{
if (length > 128)
length = 128;
return System.Web.Security.Membership.GeneratePassword(length, 0);
}
/// <summary>
/// Random string using System.IO.Path.GetRandomFileName() method
/// </summary>
/// <param name="length"></param>
/// <returns></returns>
public static string RandomString5(int length)
{
var s = string.Empty;
while (s.Length <= length)
{
s += Path.GetRandomFileName().Replace(".", string.Empty);
}
return s.Substring(0, length);
}
/// <summary>
/// Random string using Guid (this will not genereta strings longer than 32 characters!)
/// </summary>
/// <param name="length"></param>
/// <returns></returns>
public static string RandomString6(int length)
{
if (length > 32)
length = 32;
return Guid.NewGuid().ToString("N").Substring(0, length);
}
/// <summary>
/// Random string using StringBuilder() and Convert.ToChar(int) method
/// </summary>
/// <param name="length"></param>
/// <returns></returns>
public static string RandomString7(int length)
{
var builder = new StringBuilder();
char ch;
for (int i = 0; i < length; i++)
{
ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * Random.NextDouble() + 65)));
builder.Append(ch);
}
return builder.ToString();
}
To test I created this method:
public static void DoTest(int iterations, string methodName, Action action)
{
var start = DateTime.Now;
for (var i = 0; i < iterations; i++)
action();
var end = DateTime.Now;
Console.WriteLine("{0} : {1} ms", methodName, (end - start).TotalMilliseconds);
}
So I can vary how many iterations and how long strings without writing a ton of code.
Then the actual test:
public static void Test()
{
const int iterations = 10000;
const int stringLength = 20;
Console.WriteLine("Start random string performancetest");
Console.WriteLine("Iterations : " + iterations);
Console.WriteLine("Stringlength : " + stringLength);
Console.WriteLine("----------------------------------");
DoTest(iterations, "RandomString1", () => RandomString1(stringLength));
DoTest(iterations, "RandomString2", () => RandomString2(stringLength));
DoTest(iterations, "RandomString3", () => RandomString3(stringLength));
DoTest(iterations, "RandomString4", () => RandomString4(stringLength));
DoTest(iterations, "RandomString5", () => RandomString5(stringLength));
DoTest(iterations, "RandomString6", () => RandomString6(stringLength));
DoTest(iterations, "RandomString7", () => RandomString7(stringLength));
Console.WriteLine("----------------------------------");
Console.WriteLine("--- Done ---");
Console.Read();
}
The method RandomString3() performs best when the string is "short" (less then 50 characters) Another advantage is that you can specify which characters you want to include in your random string.
RandomString2() is almost like RandomNumber3() but it's not using StringBuilder(). That shows that StringBuilder() is quite fast even for short strings!
When you need to generate longer strings (I tested 500 characters), the first method performs best. But that method will include a few speicial characters in your string (/ and +) and you can't modify that easily.
The conclusion is: Use Method number 3 (RandomString3()), it's fast, flexible and easy to understand.