Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I generate random 8 character alphanumeric strings in C#?

share|improve this question
12  
Trust me, this is a very googable question. – Jonas Elfström Aug 27 '09 at 23:11
61  
@Jonas Elfstrom, So? Hopefully the next time it is googled it will lead to this page. – KingNestor Aug 27 '09 at 23:13
What restrictions if any do you have on the character set? Just English language characters and 0-9? Mixed case? – Eric J. Aug 27 '09 at 23:15
7  
3  
Note that you should NOT use any method based on the Random class to generate passwords. The seeding of Random has very low entropy, so it's not really secure. Use a cryptographic PRNG for passwords. – CodesInChaos Mar 9 '11 at 18:47

12 Answers

up vote 129 down vote accepted

I heard LINQ is the new black, so here's my attempt using LINQ:

var chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
var random = new Random();
var result = new string(
    Enumerable.Repeat(chars, 8)
              .Select(s => s[random.Next(s.Length)])
              .ToArray());

(Note: Do not use this for anything security related, such as creating passwords or tokens.)

share|improve this answer
3  
Unique solution to a common question. I like +1 – Spencer Ruport Aug 27 '09 at 23:16
6  
+1 Linq is definitely the new black :-) – Tim Jarvis Aug 27 '09 at 23:18
4  
If Linq is the new black, is var the new dim? +1 btw, über elegant. – Paul Sasik Aug 27 '09 at 23:33
3  
@Alex: I've run a few quick tests and it seems to scale pretty much linearly when generating longer strings (so long as there's actually enough memory available). Having said that, Dan Rigby's answer was almost twice as fast as this one in every test. – LukeH Aug 28 '09 at 0:33
1  
This is brilliant. – Phil Jan 6 '11 at 15:41
show 8 more comments
var chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
var stringChars = new char[8];
var random = new Random();

for (int i = 0; i < stringChars.Length; i++)
{
    stringChars[i] = chars[random.Next(chars.Length)];
}

var finalString = new String(stringChars);

Not as elegant as the Linq solution. (-:

share|improve this answer
5  
I think yours is better than Linq – Barbaros Alp Aug 27 '09 at 23:25
1  
@Barbaros Alp: But it's soooo 20th century ;-) – dtb Aug 27 '09 at 23:27
1  
I know i know :))) – Barbaros Alp Aug 28 '09 at 0:00
1  
+1. According to Luke, the fastest answer :) – Alex Aug 28 '09 at 0:35
3  
Nice answer, but what happened to "wxyz" ? :) – Moe Sisko Aug 28 '09 at 6:28
show 5 more comments

This implementation (found via google) looks sound to me:

using System.Security.Cryptography;
using System.Text;

namespace UniqueKey
{
    public class KeyGenerator
    {
        public static string GetUniqueKey(int maxSize)
        {
            char[] chars = new char[62];
            chars =
            "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890".ToCharArray();
            byte[] data = new byte[1];
            RNGCryptoServiceProvider crypto = new RNGCryptoServiceProvider();
            crypto.GetNonZeroBytes(data);
            data = new byte[maxSize];
            crypto.GetNonZeroBytes(data);
            StringBuilder result = new StringBuilder(maxSize);
            foreach (byte b in data)
            {
                result.Append(chars[b % (chars.Length)]);
            }
            return result.ToString();
        }
    }
}

Picked that one from a discussion of alternatives here

share|improve this answer
1  
This looks like the correct approach to me - random passwords, salts, entropy and so forth should not be generated using Random() which is optimized for speed and generates reproducible sequences of numbers; RNGCryptoServiceProvider.GetNonZeroBytes() on the other hand produces wild sequences of numbers that are NOT reproducible. – mindplay.dk Apr 18 '11 at 20:09
2  
The letters are slightly biased(255 % 62 != 0). Despite this minor flaw, it is by far the best solution here. – CodesInChaos Mar 17 '12 at 20:52
1  
The result will never contain 0 (use chars.Length instead of char.Length-1). – CodesInChaos Mar 17 '12 at 20:54
Note that this is not sound if you want crypto-strength, unbiased randomness. (And if you don't want that then why use RNGCSP in the first place?) Using mod to index into the chars array means that you'll get biased output unless chars.Length happens to be a divisor of 256. – LukeH Apr 3 '12 at 16:35
1  
One possibility to reduce the bias a lot, is requesting 4*maxSize random bytes, then use (UInt32)(BitConverter.ToInt32(data,4*i)% chars.Length. I'd also use GetBytes instead of GetNonZeroBytes. And finally you can remove the first call to GetNonZeroBytes. You're not using its result. – CodesInChaos Apr 4 '12 at 8:19
show 7 more comments

Why not just use a Guid?

Guid.NewGuid().ToString().Replace("-", string.Empty).Substring(0, 8);

Just tested with 100,000 iterations, generated only one duplicate.

Edit: Technically you do not need the call to .Replace. The dash comes after the first 8 characters in a Guid. I’m used to having to generate 16 char random numbers for a project I work on. Should be:

Guid.NewGuid().ToString().Substring(0, 8);

Edit 2: If you need to generate more then 8 characters, you can do what richardtallent mentions below and use "n" as the format value of the .ToString method, which removes the dashes:

Guid.NewGuid().ToString("n").Substring(0, numOfCharsNeeded);
share|improve this answer
5  
You actually generated a duplicate? Surprising at 5,316,911,983,139,663,491,615,228,241,121,400,000 possible combinations of GUIDs. – Alex Aug 28 '09 at 0:10
13  
@Alex: He's shortening the GUID to 8 characters, so the probability of collisions is much higher than that of GUIDs. – dtb Aug 28 '09 at 0:19
2  
Nobody can appreciate this other than nerds :) Yes you are absolutely right, the 8 char limit makes a difference. – Alex Aug 28 '09 at 0:36
9  
Guid.NewGuid().ToString("n") will keep the dashes out, no Replace() call needed. But it should be mentioned, GUIDs are only 0-9 and A-F. The number of combinations is "good enough," but nowhere close to what a true alphanumeric random string permits. The chances of collision are 1:4,294,967,296 -- the same as a random 32-bit integer. – richardtallent Aug 28 '09 at 0:40
4  
1) GUIDs are designed to be unique, not random. While current versions of windows generate V4 GUIDs which are indeed random, that's not guaranteed. For example older versions of windows used V1 GUIDs, where your could would fail. 2) Just using hex characters reduces the quality of the random string significantly. From 47 to 32 bits. 3) People are underestimating the collision probability, since they give it for individual pairs. If you generate 100k 32 bit values, you probably have one collision among them. See Birthday problem. – CodesInChaos Nov 16 '12 at 12:33
show 4 more comments

Here's an example that I stole from Sam Allen example at Dot Net Perls

If you only need 8 characters, then use Path.GetRandomFileName() in the System.IO namespace. Sam says using the "Path.GetRandomFileName method here is sometimes superior, because it uses RNGCryptoServiceProvider for better randomness. However, it is limited to 11 random characters."

GetRandomFileName always returns a 12 character string with a period at the 9th character. So you'll need to strip the period (since that's not random) and then take 8 characters from the string. Actually, you could just take the first 8 characters and not worry about the period.

public string Get8CharacterRandomString()
{
    string path = Path.GetRandomFileName();
    path = path.Replace(".", ""); // Remove period.
    return path.Substring(0, 8);  // Return 8 character string
}

PS: thanks Sam

share|improve this answer
A bit too clever for my tastes. I prefer the more straightforward approach. – JohnFx Aug 28 '09 at 0:39
Won't work in medium trust. – Raif Atef Dec 7 '11 at 3:40
1  
@RaifAtef: Can you please explain what you meant by "wont work in medium trust"? Thank you. – Nanda Apr 10 '12 at 18:45
2  
I stand corrected, it seems that it doesn't require full trust. I misread it for Path.GetTempFileName() which calls into "Environment" methods which don't work on medium trust. Medium trust: stackoverflow.com/questions/2617454/… – Raif Atef Apr 11 '12 at 13:45
2  
This works well. I ran it through 100,000 iterations and never had a duplicate name. However, I did find several vulgar words (in English). Wouldn't have even thought of this except one of the first ones in the list had F*** in it . Just a heads up if you use this for something the user will see. – techturtle Oct 9 '12 at 22:35
show 2 more comments

The main goals of my code are:

  1. The distribution of strings is almost uniform (don't care about minor deviations, as long as they're small)
  2. It outputs more than a few billion strings for each argument set. Generating an 8 character string (~47 bits of entropy) is meaningless if your PRNG only generates 2 billion (31 bits of entropy) different values.
  3. It's secure, since I expect people to use this for passwords or other security tokens.

The first property is achieved by taking a 32 bit value modulo the alphabet size. For small alphabets (such as the 62 characters from the question) this leads to negligible bias. The second and third property are achieved by using RNGCryptoServiceProvider instead of System.Random.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;

public static string GetRandomAlphanumericString(int length)
{
    const string alphanumericCharacters =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZ" +
        "abcdefghijklmnopqrstuvwxyz" +
        "0123456789";
    return GetRandomString(length, alphanumericCharacters);
}

public static string GetRandomString(int length, IEnumerable<char> characterSet)
{
    if (length < 0)
        throw new ArgumentException("length must not be negative", "length");
    if (length > int.MaxValue / 4) // 500 million chars ought to be enough for anybody
        throw new ArgumentException("length is too big", "length");
    if (characterSet == null)
        throw new ArgumentNullException("characterSet");
    var characterArray = characterSet.Distinct().ToArray();
    if (characterArray.Length == 0)
        throw new ArgumentException("characterSet must not be empty", "characterSet");

    var bytes = new byte[length*4];
    new RNGCryptoServiceProvider().GetBytes(bytes);
    var result = new char[length];
    for (int i = 0; i < length; i++)
    {
        uint value = BitConverter.ToUInt32(bytes, i * 4);
        result[i] = characterArray[value % characterArray.Length];
    }
    return new string(result);
}
share|improve this answer

If you just need a pseudo-random alphanumeric code, that is user friendly, and derived from an integer value, I have provided a solution here:

Generating pseudo-random alphanumeric values

It has the advantage that each key generated is guaranteed to be unique.

share|improve this answer

Another option could be to use Linq and aggregate random chars into a stringbuilder.

var chars = "abcdefghijklmnopqrstuvwxyz123456789".ToArray();
string pw = Enumerable.Range(0, passwordLength)
                      .Aggregate(
                          new StringBuilder(),
                          (sb, n) => sb.Append((chars[random.Next(chars.Length)])),
                          sb => sb.ToString());
share|improve this answer

Horrible, I know, but I just couldn't help myself:


namespace ConsoleApplication2
{
    using System;
    using System.Text.RegularExpressions;

    class Program
    {
        static void Main(string[] args)
        {
            Random adomRng = new Random();
            string rndString = string.Empty;
            char c;

            for (int i = 0; i < 8; i++)
            {
                while (!Regex.IsMatch((c=Convert.ToChar(adomRng.Next(48,128))).ToString(), "[A-Za-z0-9]"));
                rndString += c;
            }

            Console.WriteLine(rndString + Environment.NewLine);
        }
    }
}

share|improve this answer
  1. If you don't need a cryptographically random generator
  2. If you know the length of the output, you don't need a StringBuilder, and when using ToCharArray, this creates and fills the array (you don't need to create an empty array first)
  3. You should use NextBytes, rather than getting one at a time for performance
  4. Technically you could pin the byte array for faster access.. it's usually worth it when your iterating more than 6-8 times over a byte array.
  5. Define your character set and Random gen object once.
  6. My example has a 62 char set and 32 char output
  7. Clearly, you can adjust this example, to accept the string length as a param.

    private static char[] charSet =
      "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".ToCharArray();
    
    
    private static Random rGen = new Random();
    public string GenerateRandomString()
    {
      byte[] rBytes = new byte[32];
      rGen.NextBytes(rBytes);
      char[] rName = new char[32];
      for (int i = 0; i < 32; i++)
        rName[i] = charSet[rBytes[i] % 62];
      return rName.ToString();
    }
    
share|improve this answer

If your values are not completely random, but in fact may depend on something - you may compute an md5 or sha1 hash of that 'somwthing' and then truncate it to whatever length you want.

Also you may generate and truncate a guid.

share|improve this answer

The simplest:

public static string GetRandomAlphaNumeric()
{
    return Path.GetRandomFileName().Replace(".", "").Substring(0, 8);
}

You can get better performance if you hard code the char array and rely on System.Random:

public static string GetRandomAlphaNumeric()
{
    var chars = "abcdefghijklmnopqrstuvwxyz0123456789";
    return new string(chars.Select(c => chars[random.Next(chars.Length)]).Take(8).ToArray());
}

If ever you worry the English alphabets can change sometime around and you might lose business, then you can avoid hard coding, but should perform slightly worse (comparable to Path.GetRandomFileName approach)

public static string GetRandomAlphaNumeric()
{
    var chars = 'a'.To('z').Concat('0'.To('9')).Select(c => (char)c).ToArray();
    return new string(chars.Select(c => chars[random.Next(chars.Length)]).Take(8).ToArray());
}

public static IEnumerable<int> To(this char start, char end)
{
    return Enumerable.Range(start, end - start + 1);
}
share|improve this answer

protected by Community Mar 3 '12 at 1:49

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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