Vb6 How do I make a Random String of 0-9 and a-z of x characters - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T17:23:36Z http://stackoverflow.com/feeds/question/292254 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/292254/vb6-how-do-i-make-a-random-string-of-0-9-and-a-z-of-x-characters 4 Vb6 How do I make a Random String of 0-9 and a-z of x characters JAckie-Brown 2008-11-15T07:02:45Z 2009-05-31T16:35:09Z <p>Trying to create a random string, x characters in length using 0-9 and a-z/A-Z and can't seem to find a good example, any ideas?</p> http://stackoverflow.com/questions/292254/vb6-how-do-i-make-a-random-string-of-0-9-and-a-z-of-x-characters/292255#292255 1 Answer by Vinko Vrsalovic for Vb6 How do I make a Random String of 0-9 and a-z of x characters Vinko Vrsalovic 2008-11-15T07:09:42Z 2008-11-15T07:09:42Z <p>I forgot all my VB6 (thank God) but in pseudocode it's pretty easy:</p> <pre> all_chars = an array of all the valid chars seed random number generator for i = 1 to x do random_index = get a random number between 1 and length of all_chars 'I remember how to concat and comment in VB6 :-) string = string & all_chars[random_index] end for done! </pre> <p>So it's just a matter of finding out how to create an array and fill it with characters, how to get the length of the array and how to get a <a href="http://www.vbexplorer.com/VBExplorer/random/random_numbers_1.asp" rel="nofollow">random number</a> between the first and last indexes of said array.</p> <p>Well, all that and looping of course.</p> http://stackoverflow.com/questions/292254/vb6-how-do-i-make-a-random-string-of-0-9-and-a-z-of-x-characters/292278#292278 0 Answer by Daniel for Vb6 How do I make a Random String of 0-9 and a-z of x characters Daniel 2008-11-15T07:38:54Z 2008-11-15T07:38:54Z <p>Use Randomize<br> Int(Rnd * (low bound)) + (high bound) will generate a random number<br> Generate an array with values from asc("a") to asc("z") and from asc("0") to asc("9")<br> Generate random number between 1 and 26 (10+26) and look it up in array.<br></p> <p>Don't have VB6 installed anymore.</p> http://stackoverflow.com/questions/292254/vb6-how-do-i-make-a-random-string-of-0-9-and-a-z-of-x-characters/292283#292283 8 Answer by Joel Spolsky for Vb6 How do I make a Random String of 0-9 and a-z of x characters Joel Spolsky 2008-11-15T07:52:32Z 2009-05-31T16:35:09Z <pre><code>Function RandomString(cb As Integer) As String Randomize Dim rgch As String rgch = "abcdefghijklmnopqrstuvwxyz" rgch = rgch &amp; UCase(rgch) &amp; "0123456789" Dim i As Long For i = 1 To cb RandomString = RandomString &amp; Mid$(rgch, Int(Rnd() * Len(rgch) + 1), 1) Next End Function </code></pre> <p>Please be aware that the built-in random number generator is not cryprographically secure so a function like this should not be used to generate passwords.</p> http://stackoverflow.com/questions/292254/vb6-how-do-i-make-a-random-string-of-0-9-and-a-z-of-x-characters/910027#910027 0 Answer by Roberto for Vb6 How do I make a Random String of 0-9 and a-z of x characters Roberto 2009-05-26T10:35:08Z 2009-05-26T10:35:08Z <p>Hi everyone..... Using the algorith of Vinko Vrsalovic, here is the funcionay code, thanks and cya!</p> <pre><code>all_chars = array("A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","S","T","U","V","W","X","Y","Z") Randomize for i = 1 to 4 random_index = int(Rnd()*25) clave = clave &amp; all_chars(random_index) next </code></pre> http://stackoverflow.com/questions/292254/vb6-how-do-i-make-a-random-string-of-0-9-and-a-z-of-x-characters/915572#915572 0 Answer by Oorang for Vb6 How do I make a Random String of 0-9 and a-z of x characters Oorang 2009-05-27T12:59:59Z 2009-05-30T05:59:58Z <p>Hi Jackie,<br /> You didn't really say what you were using this for. If you need small strings (&lt;=32,766) I think Joel's function will work fine. However if you need something to generate really large strings, this might be useful. On my system it will do a 1,000,000 char string in 0.33291015625 seconds (yes I know... sledgehammer:)) Also you can parametrize the character set so you don't have to change the code every time you want to do something "special":) :<br /></p> <pre><code>Public Function RandomString( _ ByVal length As Long, _ Optional charset As String = "abcdefghijklmnopqrstuvwxyz0123456789" _ ) As String Dim chars() As Byte, value() As Byte, chrUprBnd As Long, i As Long If length &gt; 0&amp; Then Randomize chars = charset chrUprBnd = Len(charset) - 1&amp; length = (length * 2&amp;) - 1&amp; ReDim value(length) As Byte For i = 0&amp; To length Step 2&amp; value(i) = chars(CLng(chrUprBnd * Rnd) * 2&amp;) Next End If RandomString = value End Function </code></pre> http://stackoverflow.com/questions/292254/vb6-how-do-i-make-a-random-string-of-0-9-and-a-z-of-x-characters/916314#916314 1 Answer by Jim Mack for Vb6 How do I make a Random String of 0-9 and a-z of x characters Jim Mack 2009-05-27T15:09:23Z 2009-05-27T15:09:23Z <p>Joel's method is fine (except for the integer loop variable, and using "+" for concatenation). (-:</p> <p>However, the output can be made more interesting in a couple of ways.</p> <p>First, you can generate strings that have the same approximate frequency distribution as common English text, by creating a seed string with many more Ee and Tt characters than Zz characters. A string of maybe 1000 characters (double that if mixed case) in <a href="http://www.csm.astate.edu/~rossa/datasec/frequency.html" rel="nofollow">this</a> approximate mix would work OK.</p> <p>Add in equal numbers of 0..9 chars in whatever ratio you would like to see in the final output. You could also shuffle this see string to make it look more random, but it doesn't really matter. </p> <p>Then use a random selector in the range of 1..Len(seedstring) to pick each character, just as in Joel's example.</p> <p>Why do this? No good reason except that the results will look more familiar.</p> <p>A second option is to generate two such seed strings, one of the consonants in corpus weight, and the other with the vowels in the same weighting (more E than O than U, etc). I would use just one case, not mixed case.</p> <p>Then alternate two random selections, first from the consonants, then from the vowels, to generate digraphs like TI, WO, DE, and so on. Chain these together to form "words".</p> <p>Because the resulting output is pronounceable, it's much more easily remembered. Plus, it looks eerily Japanese. (-:</p> <p>Our <a href="http://www.mdxi.com/" rel="nofollow">Stamina</a> library (ASM functions for VB/VBA) has routines that do these things, but it's easy enough in pure VB.</p> http://stackoverflow.com/questions/292254/vb6-how-do-i-make-a-random-string-of-0-9-and-a-z-of-x-characters/917632#917632 0 Answer by Guy for Vb6 How do I make a Random String of 0-9 and a-z of x characters Guy 2009-05-27T19:41:45Z 2009-05-27T19:41:45Z <p>Inspired by this question I have asked a <a href="http://stackoverflow.com/questions/917617/is-using-a-guid-a-valid-way-to-generate-a-random-string-of-characters-and-numbers">similar question</a> where I propose using a GUID to generate the sequence. The short coming of this, as I point out, is that if there are no other flaws in my logic then it will be a random sequence of A through F and 10 digits. If you can live with the fact that letters G through Z are missing then this might be a solution for you.</p>