Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Random string generation
Message
De
20/10/2010 08:26:42
 
 
À
20/10/2010 07:59:30
Timothy Bryan
Sharpline Consultants
Conroe, Texas, États-Unis
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Versions des environnements
Environment:
C# 4.0
Application:
Web
Divers
Thread ID:
01486288
Message ID:
01486291
Vues:
48
>Hi all,
>
>I need to generate a random string with a set length to use for creating a login account and and linking it to an exisiting customer account. Since I need to be able to differentiate it from another random generated string it would be nice if I could generate numerous strings from the same base value or something.
>
>What is the best way to do this? I am thinking somewhere between 10 and 15 characters is sufficient for this.
>Thanks
>Tim

Coffee break solution:
Random r = new Random();
            StringBuilder sb = new StringBuilder();
            string[] a = "A B C D E F a b c d e f".Split();
            for (int i = 0 ; i < 15 ; i++)
            {
                sb.Append(a[r.Next(0,a.Length)]);
            }
            string result = sb.ToString();
Add to a[] to allow bigger choice of characters.....
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform