Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've developed a random string generator but it's not behaving quite as I'm hoping. My goal is to be able to run this twice and generate two distinct four character random strings. However, it just generates one four character random string twice.

Here's the code and an example of its output:

private string RandomString(int size)
    {
        StringBuilder builder = new StringBuilder();
        Random random = new Random();
        char ch;
        for (int i = 0; i < size; i++)
        {
            ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65)));                 
            builder.Append(ch);
        }

        return builder.ToString();
    }

// get 1st random string 
string Rand1 = RandomString(4);

// get 2nd random string 
string Rand2 = RandomString(4);

// creat full rand string
string docNum = Rand1 + "-" + Rand2;

...and the output looks like this: UNTE-UNTE ...but it should look something like this UNTE-FWNU

How can I ensure two distinct random strings?

Thanks!

share|improve this question
stackoverflow.com/questions/4616685/… Good Performance – mola10 Nov 2 '11 at 8:58
Note that even two perfectly random strings aren't guaranteed to be unique. With long strings (120+ bits) it's extremely likely that they're unique, but with short strings like this, collisions are common. – CodesInChaos Nov 19 '12 at 10:03

20 Answers

up vote 136 down vote accepted

You're making the Random instance in the method, which causes it to return the same values when called in quick succession. I would do something like this:

private static Random random = new Random((int)DateTime.Now.Ticks);//thanks to McAden
private string RandomString(int size)
    {
        StringBuilder builder = new StringBuilder();
        char ch;
        for (int i = 0; i < size; i++)
        {
            ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65)));                 
            builder.Append(ch);
        }

        return builder.ToString();
    }

// get 1st random string 
string Rand1 = RandomString(4);

// get 2nd random string 
string Rand2 = RandomString(4);

// creat full rand string
string docNum = Rand1 + "-" + Rand2;

(modified version of your code)

share|improve this answer
Thanks RCIX, I went with your example and it's working! – PushCode Jul 13 '09 at 23:09
You're very welcome! i don't suppose you would mind accepting this answer... :) – RCIX Jul 13 '09 at 23:42
20  
Note that instance members of the Random class are NOT documented as being thread-safe, so if this method is called from multiple threads at the same time (highly likely if you're making a web app, for example) then the behaviour of this code will be undefined. You either need to use a lock on the random or make it per-thread. – Greg Beech Oct 14 '10 at 18:27
yes random is not thread safe and causes a lot of problems at asp.net website – MonsterMMORPG Dec 26 '12 at 14:40
1  
Also, you can get a random uppercase letter by using ch = (char)random.Next('A','Z'); a lot simpler than the unreadable line ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65))); from the original post. Then if you want to switch it to lowercase, you can easily switch to (char)random.Next('a','z'); – Nick Freeman Apr 11 at 14:43

You're instantiating the Random object inside your method.

The Random object is seeded from the system clock, which means that if you call your method several times in quick succession it'll use the same seed each time, which means that it'll generate the same sequence of random numbers, which means that you'll get the same string.

To solve the problem, move your Random instance outside of the method itself (and while you're at it you could get rid of that crazy sequence of calls to Convert and Floor and NextDouble):

private readonly Random _rng = new Random();
private const string _chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

private string RandomString(int size)
{
    char[] buffer = new char[size];

    for (int i = 0; i < size; i++)
    {
        buffer[i] = _chars[_rng.Next(_chars.Length)];
    }
    return new string(buffer);
}
share|improve this answer
7  
Or make it static and internal to the class. – Jake Pearson Jul 13 '09 at 22:50
6  
Also, I like making this sort of method an extension method on Random. – Cameron MacFarland Jul 13 '09 at 23:08
5  
Note that instance members of the Random class are NOT documented as being thread-safe, so if this method is called from multiple threads at the same time (highly likely if you're making a web app, for example) then the behaviour of this code will be undefined. You either need to use a lock on the random or make it per-thread. – Greg Beech Oct 14 '10 at 18:28

//A very Simple implementation

using System.IO;   
public static string RandomStr()

{
    string rStr = Path.GetRandomFileName();
    rStr = rStr.Replace(".", ""); // For Removing the .
    return rStr;
}

//Now just call RandomStr() Method

share|improve this answer
I like this method better than the others listed. Good find. – Graham Apr 18 '11 at 3:26
4  
nice! Love it when you find a little gem like GetRandomFileName hidden in the .Net framework – Andy Britcliffe Apr 20 '11 at 9:23
2  
@AndersFjeldstad Agreed, I did a loop and it hits a collision after approximately 130,000 iterations. Even though there are 1,785,793,904,896 combinations. – Andrew Jan 24 '12 at 12:54
9  
This creates files on the disk. From MSDN: The GetTempFileName method will raise an IOException if it is used to create more than 65535 files without deleting previous temporary files. The GetTempFileName method will raise an IOException if no unique temporary file name is available. To resolve this error, delete all unneeded temporary files. – bugnuker Jul 24 '12 at 21:51
4  
@bugnuker "The GetRandomFileName method returns a cryptographically strong, random string that can be used as either a folder name or a file name. Unlike GetTempFileName, GetRandomFileName does not create a file. When the security of your file system is paramount, this method should be used instead of GetTempFileName." We are talking about GetRandomFileName() not GetTempFileName(). – xiaomao Nov 7 '12 at 2:27
show 5 more comments

As long as you are using Asp.Net 2.0 or greater, you can also use the library call- System.Web.Security.Membership.GeneratePassword, however it will include special characters.

To get 4 random characters with minimum of 0 special characters-

Membership.GeneratePassword(4, 0)
share|improve this answer
5  
Note that in 4.0 the second integer parameter denotes the minimum number of nonAlphaNumericCharacters to use. So Membership.GeneratePassword(10, 0); won't work quite the way you think, it still puts in loads of non-alphanumeric characters, eg: z9sge)?pmV – keithl8041 Aug 19 '11 at 11:01
the only reason i can think of for not wanting to using this over other methods is the hassle you have to go through to remove special characters....... assuming you need to which i don't – Ben Apr 17 '12 at 13:32
Thanks keithl8041, updated answer to reflect that. – Spongeboy Jun 12 '12 at 6:05
For me this is the correct answer as long as you have access to membership. I mean why reinvent hot water right? – Marko Feb 22 at 22:09

Just for people stopping by and what to have a random string in just one single line of code

int yourRandomStringLength = 12; //maximum: 32
Guid.NewGuid().ToString("N").Substring(0, yourRandomStringLength);

PS: Please keep in mind that yourRandomStringLength cannot exceed 32 as Guid has max length of 32.

share|improve this answer
5  
I'm not sure that will necessarily be random. GUIDs are designed to be unique, not random, so it's possible the first N characters in string could be identical (depending on the GUID generator). – cdmckay Jun 25 '12 at 14:28
1  
I just needed a 5 character temp password to hash. This is wonderful thank you. – Bmo Oct 23 '12 at 18:08

Yet another version of string generator. Simple, without fancy math and magic digits. But with some magic string which specifies allowed characters.

public string RandomString(int length)
{
    Random r = new Random(Environment.TickCount);
    string chars = "0123456789abcdefghijklmnopqrstuvwxyz";
    StringBuilder builder = new StringBuilder(length);

    for (int i = 0; i < length; ++i)
        builder.Append(chars[r.Next(chars.Length)]);

    return builder.ToString();
}
share|improve this answer
this will generate the same string if you call it multiple times.. – stian.net May 8 at 12:11

The best solution is using the random number generator toghether with base64 conversion

public string GenRandString(int length)
{
  byte[] randBuffer = new byte[length];
  RandomNumberGenerator.Create().GetBytes(randBuffer);
  return System.Convert.ToBase64String(randBuffer).Remove(length);
}
share|improve this answer
Note that the result can contain / and +. – CodesInChaos Nov 19 '12 at 9:58
True. However I prefer this over Membership.GeneratePassword() – Aram Azhari Dec 18 '12 at 9:47
return System.Convert.ToBase64String(randBuffer).Replace("/", "").Replace("+", "").Replace("=", "").Remove(length); – mjb Jan 6 at 8:09

This solution is an extension for a Random class.

Usage

class Program
{
    private static Random random = new Random(); 

    static void Main(string[] args)
    {
        random.NextString(10); // "cH*%I\fUWH0"
        random.NextString(10); // "Cw&N%27+EM"
        random.NextString(10); // "0LZ}nEJ}_-"
    }
}

Implementation

public static class RandomEx
{
    public static string NextString(this Random r, int size)
    {
        var data = new byte[size];
        for (int i = 0; i < data.Length; i++)
        {
            // All ASCII symbols: printable and non-printable
            // data[i] = (byte)r.Next(0, 128);
            // Only printable ASCII
            data[i] = (byte)r.Next(32, 127);               
        }
        var encoding = new ASCIIEncoding();
        return encoding.GetString(data);
    }
}
share|improve this answer
You pull from the entire ascii set, including un-printable characters? – Nicholi Nov 5 '12 at 22:25
1  
I have added a range for only printable symbols. You would need to comment one line and uncomment the other. Thanks. – oleksii Nov 6 '12 at 11:27

This is because each new instance of Random is generating the same numbers from being called so fast. Do not keep creating a new instance, just call next() and declare your random class outside of your method.

share|improve this answer

You should have one class-level Random object initiated once in the constructor and reused on each call (this continues the same sequence of pseudo-random numbers). The parameterless constructor already seeds the generator with Environment.TickCount internally.

share|improve this answer

I added the option to choose the length using the Ranvir solution

public static string GenerateRandomString(int length)
    {
        {
            string randomString= string.Empty;

            while (randomString.Length <= length)
            {
                randomString+= Path.GetRandomFileName();
                randomString= randomString.Replace(".", string.Empty);
            }

            return randomString.Substring(0, length);
        }
    }
share|improve this answer

I created this method.

It works great.

public static string GeneratePassword(int Lenght, int NonAlphaNumericChars)
    {
        string allowedChars = "abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ0123456789";
        string allowedNonAlphaNum = "!@#$%^&*()_-+=[{]};:<>|./?";
        Random rd = new Random();

        if (NonAlphaNumericChars > Lenght || Lenght <= 0 || NonAlphaNumericChars < 0)
            throw new ArgumentOutOfRangeException();

            char[] pass = new char[Lenght];
            int[] pos = new int[Lenght];
            int i = 0, j = 0, temp = 0;
            bool flag = false;

            //Random the position values of the pos array for the string Pass
            while (i < Lenght - 1)
            {
                j = 0;
                flag = false;
                temp = rd.Next(0, Lenght);
                for (j = 0; j < Lenght; j++)
                    if (temp == pos[j])
                    {
                        flag = true;
                        j = Lenght;
                    }

                if (!flag)
                {
                    pos[i] = temp;
                    i++;
                }
            }

            //Random the AlphaNumericChars
            for (i = 0; i < Lenght - NonAlphaNumericChars; i++)
                pass[i] = allowedChars[rd.Next(0, allowedChars.Length)];

            //Random the NonAlphaNumericChars
            for (i = Lenght - NonAlphaNumericChars; i < Lenght; i++)
                pass[i] = allowedNonAlphaNum[rd.Next(0, allowedNonAlphaNum.Length)];

            //Set the sorted array values by the pos array for the rigth posistion
            char[] sorted = new char[Lenght];
            for (i = 0; i < Lenght; i++)
                sorted[i] = pass[pos[i]];

            string Pass = new String(sorted);

            return Pass;
    }
share|improve this answer
Shows once again that security is hard to test for. While it "works great" it's not secure. Use a a secure PRNG to generate passwords. – CodesInChaos Nov 19 '12 at 10:00

If you wanted to generate a string of Numbers and Characters for a strong password.

private static Random random = new Random();

private static string CreateTempPass(int size)
        {
            var pass = new StringBuilder();
            for (var i=0; i < size; i++)
            {
                var binary = random.Next(0,2);
                switch (binary)
                {
                    case 0:
                    var ch = (Convert.ToChar(Convert.ToInt32(Math.Floor(26*random.NextDouble() + 65))));
                        pass.Append(ch);
                        break;
                    case 1:
                        var num = random.Next(1, 10);
                        pass.Append(num);
                        break;
                }
            }
            return pass.ToString();
        }
share|improve this answer
Note that instance members of the Random class are NOT documented as being thread-safe, so if this method is called from multiple threads at the same time (highly likely if you're making a web app, for example) then the behaviour of this code will be undefined. You either need to use a lock on the random or make it per-thread. – Greg Beech Oct 14 '10 at 18:29
1  
@GregBeech really? Again? Bored much? – Escobar Ceaser Dec 30 '11 at 20:37

Combining the answer by "Pushcode" and the one using the seed for the random generator. I needed it to create a serie of pseudo-readable 'words'.

private int RandomNumber(int min, int max, int seed=0)
{
    Random random = new Random((int)DateTime.Now.Ticks + seed);
    return random.Next(min, max);
}
share|improve this answer
C# doesn't have default arguments AFAIK. – xiaomao Nov 1 '12 at 2:31
@xiaomao You are not correct. I use them all the time. They are called "Optional Arguments", by the way. – Andrew Barber Nov 1 '12 at 2:32
@Andrew OK, that's a new addition, from MSDN: "Visual C# 2010 introduces named and optional arguments". – xiaomao Nov 1 '12 at 2:46
@xiaomao I would not call over 3 years, and one previous full version to be a "new addition". It was a well established feature by the time this answer was posted in September of last year. – Andrew Barber Nov 1 '12 at 2:48

And here is another idea based on GUIDs. I've used it for the Visual Studio performance test to generate random string contaning only alphanumeric characters.

public string GenerateRandomString(int stringLength)
{
    Random rnd = new Random();
    Guid guid;
    String randomString = string.Empty;

    int numberOfGuidsRequired = (int)Math.Ceiling((double)stringLength / 32d);
    for (int i = 0; i < numberOfGuidsRequired; i++)
    {
        guid = Guid.NewGuid();
        randomString += guid.ToString().Replace("-", "");
    }

    return randomString.Substring(0, stringLength);
}
share|improve this answer

Here is a blog post that provides a bit more robust class for generating random words, sentences and paragraphs.

share|improve this answer

Here is my modification of the currently accepted answer, which I believe it's a little faster and shorter:

private static Random random = new Random();

private string RandomString(int size) {
    StringBuilder builder = new StringBuilder(size);
    for (int i = 0; i < size; i++)
        builder.Append((char)random.Next(0x41, 0x5A));
    return builder.ToString();
}

Notice I didn't use all the multiplication, Math.floor(), Convert etc.

EDIT: random.Next(0x41, 0x5A) can be changed to any range of Unicode characters.

share|improve this answer
psst... you actually didn't answer the problem the OP had... – Andrew Barber Nov 1 '12 at 2:30
@Andrew This actually fix the problem, note that this is also an optimization I made to the accepted answer. – xiaomao Nov 1 '12 at 2:48
Your code does. Your description makes no mention of it, though. As for it being an optimization; I'd want to see some benchmarks before agreeing with that statement; there's stuff going on you are (apparently) not aware of. Like implicit conversions. Plus, you missed potentially the biggest performance boost of all - specifying a starting size for the StringBuilder. (IMHO) – Andrew Barber Nov 1 '12 at 2:52
@Andrew I will modify my answer to reflect that, but with generate a uniformly distributed with the method provided by .NET, instead of the custom method involving a multiplication and floor operation, has to be faster. – xiaomao Nov 1 '12 at 2:55

I found this to be more helpfull, since it is an extention, and it allows you to select the source of your code.

static string
    numbers = "0123456789",
    letters = "abcdefghijklmnopqrstvwxyz",
    lettersUp = letters.ToUpper(),
    codeAll = numbers + letters + lettersUp;

static Random m_rand = new Random();

public static string GenerateCode(this int size)
{
    return size.GenerateCode(CodeGeneratorType.All);
}

public static string GenerateCode(this int size, CodeGeneratorType type)
{
    string source;

    if (type == CodeGeneratorType.All)
    {
        source = codeAll;
    }
    else
    {
        StringBuilder sourceBuilder = new StringBuilder();
        if ((type & CodeGeneratorType.Letters) == CodeGeneratorType.Numbers)
            sourceBuilder.Append(numbers);
        if ((type & CodeGeneratorType.Letters) == CodeGeneratorType.Letters)
            sourceBuilder.Append(letters);
        if ((type & CodeGeneratorType.Letters) == CodeGeneratorType.LettersUpperCase)
            sourceBuilder.Append(lettersUp);

        source = sourceBuilder.ToString();
    }

    return size.GenerateCode(source);
}

public static string GenerateCode(this int size, string source)
{
    StringBuilder code = new StringBuilder();
    int maxIndex = source.Length-1;
    for (int i = 0; i < size; i++)
    {

        code.Append(source[Convert.ToInt32(Math.Round(m_rand.NextDouble() * maxIndex))]);
    }

    return code.ToString();
}

public enum CodeGeneratorType { Numbers = 1, Letters = 2, LettersUpperCase = 4, All = 16 };

Hope this helps.

share|improve this answer
public static class StringHelpers
{
    public static readonly Random rnd = new Random();

    public static readonly string EnglishAlphabet = "abcdefghijklmnopqrstuvwxyz";
    public static readonly string RussianAlphabet = "абвгдеёжзийклмнопрстуфхцчшщъыьэюя";

    public static unsafe string GenerateRandomUTF8String(int length, string alphabet)
    {
        if (length <= 0)
            return String.Empty;
        if (string.IsNullOrWhiteSpace(alphabet))
            throw new ArgumentNullException("alphabet");

        byte[] randomBytes = rnd.NextBytes(length);

        string s = new string(alphabet[0], length);

        fixed (char* p = s)
        {
            for (int i = 0; i < s.Length; i++)
            {
                *(p + i) = alphabet[randomBytes[i] % alphabet.Length];
            }
        }
        return s;
    }

    public static unsafe string GenerateRandomUTF8String(int length, params UnicodeCategory[] unicodeCategories)
    {
        if (length <= 0)
            return String.Empty;
        if (unicodeCategories == null)
            throw new ArgumentNullException("unicodeCategories");
        if (unicodeCategories.Length == 0)
            return rnd.NextString(length);

        byte[] randomBytes = rnd.NextBytes(length);

        string s = randomBytes.ConvertToString();
        fixed (char* p = s)
        {
            for (int i = 0; i < s.Length; i++)
            {
                while (!unicodeCategories.Contains(char.GetUnicodeCategory(*(p + i))))
                    *(p + i) += (char)*(p + i);
            }
        }
        return s;
    }
}

You also will need this:

public static class RandomExtensions
{
    public static string NextString(this Random rnd, int length)
    {
        if (length <= 0)
            return String.Empty;

        return rnd.NextBytes(length).ConvertToString();
    }

    public static byte[] NextBytes(this Random rnd, int length)
    {
        if (length <= 0)
            return new byte[0];

        byte[] randomBytes = new byte[length];
        rnd.NextBytes(randomBytes);
        return randomBytes;
    }
}

And this:

public static class ByteArrayExtensions
{
    public static string ConvertToString(this byte[] bytes)
    {
        if (bytes.Length <= 0)
            return string.Empty;

        char[] chars = new char[bytes.Length / sizeof(char)];
        Buffer.BlockCopy(bytes, 0, chars, 0, bytes.Length);
        return new string(chars);
    }
}
share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.