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!

link|improve this question

69% accept rate
stackoverflow.com/questions/4616685/… Good Performance – mola10 Nov 2 '11 at 8:58
feedback

14 Answers

up vote 84 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)

link|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
10  
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
feedback

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);
}
link|improve this answer
6  
Or make it static and internal to the class. – Jake Pearson Jul 13 '09 at 22:50
5  
Also, I like making this sort of method an extension method on Random. – Cameron MacFarland Jul 13 '09 at 23:08
3  
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
feedback

//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

link|improve this answer
I like this method better than the others listed. Good find. – Graham Apr 18 '11 at 3:26
1  
nice! Love it when you find a little gem like GetRandomFileName hidden in the .Net framework – Andy Britcliffe Apr 20 '11 at 9:23
Beautiful...genuinely. +1 – Stimul8d Sep 9 '11 at 13:36
+1 - Used this today - love it! – LeopardSkinPillBoxHat Dec 20 '11 at 5:12
1  
@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 at 12:54
show 3 more comments
feedback

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

To get 4 random characters with 0 special characters-

Membership.GeneratePassword(4, 0)
link|improve this answer
4  
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 at 13:32
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Here is my implementation

public static class RandomString
{
    private static Random random = new Random();

    public static string NextString(this Random r, int size)
    {
        var data = new byte[size];
        for (int i = 0; i < data.Length; i++)
        {
            data[i] = (byte)r.Next(0, 128);
        }
        var encoding = new ASCIIEncoding();
        return encoding.GetString(data);
    }
}

And sample usage

Random random = new Random();
string actual = random.NextString(10);
link|improve this answer
feedback

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.

link|improve this answer
feedback

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);
        }
    }
link|improve this answer
feedback

So, is it as simple as changing

This line: Random random = new Random();

To this: Random random = new Random((int)DateTime.Now.Ticks);

Or is there more to it than that?

link|improve this answer
4  
Luke's answer is what you want. And please use comments for commenting or asking a follow-up question to an answer. Answers are for answering. – Chris W. Rea Jul 13 '09 at 23:07
feedback

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

http://nickstips.wordpress.com/2010/08/26/c-random-text-generator/

link|improve this answer
feedback

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();
        }
link|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
@GregBeech really? Again? Bored much? – Frank White Dec 30 '11 at 20:37
feedback

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);
}
link|improve this answer
feedback

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;
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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