How can I generate random 8 character alphanumeric strings in C#?
|
I heard LINQ is the new black, so here's my attempt using LINQ:
(Note: Do not use this for anything security related, such as creating passwords or tokens.) |
|||||||||||||||||||||
|
Not as elegant as the Linq solution. (-: |
|||||||||||||||||||||
|
|
This implementation (found via google) looks sound to me:
Picked that one from a discussion of alternatives here |
|||||||||||||||||||
|
|
Why not just use a Guid?
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:
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:
|
|||||||||||||||||||||
|
|
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.
PS: thanks Sam |
|||||||||||||||||
|
|
The main goals of my code are:
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
|
||||
|
|
|
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. |
||||
|
|
|
Another option could be to use Linq and aggregate random chars into a stringbuilder.
|
||||
|
|
|
Horrible, I know, but I just couldn't help myself:
|
||||
|
|
|
||||
|
|
|
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. |
|||
|
|
|
The simplest:
You can get better performance if you hard code the char array and rely on
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
|
|||
|
|
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.
Randomclass to generate passwords. The seeding ofRandomhas very low entropy, so it's not really secure. Use a cryptographic PRNG for passwords. – CodesInChaos Mar 9 '11 at 18:47