vote up 4 vote down star
3

Hi, 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!

flag

25% accept rate

6 Answers

vote up 6 vote down check

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|flag
Thanks RCIX, I went with your example and it's working! – PushCode Jul 13 at 23:09
You're very welcome! i don't suppose you would mind accepting this answer... :) – RCIX Jul 13 at 23:42
vote up 22 vote down

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|flag
2  
Or make it static and internal to the class. – Jake Pearson Jul 13 at 22:50
2  
Also, I like making this sort of method an extension method on Random. – Cameron MacFarland Jul 13 at 23:08
vote up 1 vote down

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|flag
vote up 2 vote down

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|flag
vote up -1 vote down

You need to provide a random seed. Something like:

Thread.Sleep( 1 );
Random random = new Random((int)DateTime.Now.Ticks);

If you want a better random number gen, see System.Security.Cryptography.RandomNumberGenerator

link|flag
2  
The Ticks value is implicitly used as the seed when none is passed in the Random() constructor. Passing DateTime.Now.Ticks won't do it. – Cheeso Jul 13 at 23:52
I usually don't create multiple "Random" objects so it's never been a problem for me, thanks for the correction. Adding Thread.Sleep should then rectify the problem. – McAden Jul 14 at 1:18
vote up -2 vote down

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|flag
1  
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. – BasicallyMoney.com Jul 13 at 23:07

Your Answer

Get an OpenID
or

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