I need a random number and letter generator code

522 Views Asked by At

So I am trying to find the right code to generate this-like codes: 61NS4-AGHLE-1AJP6-KA2AY

I have the right code in an old VB program I coded ages ago. maybe anyone could suggest something useful. :)

 Public Function generatecode() As Object
    Dim obj8 As Object
    Dim obj11 As Object
    Dim obj6 As Object = "QWEYXWQ10203451QWEYXKP067088090ABCDEFGXDRHJKUPJAQWWXY"
    Dim left As Object = Strings.Len(RuntimeHelpers.GetObjectValue(obj6))
    Dim limit As Object = 5
    VBMath.Randomize()
    Dim obj7 As Object = ""
    If ForLoopControl.ForLoopInitObj(obj8, 1, limit, 1, obj11, obj8) Then
        Do
            '   Dim objectValue As Object = RuntimeHelpers.GetObjectValue(Conversion.Int(Operators.AddObject(Operators.MultiplyObject(left, VBMath.Rnd), 1)))
            '  obj7 = Operators.ConcatenateObject(obj7, Strings.Mid(Conversions.ToString(obj6), Conversions.ToInteger(objectValue), 1))
        Loop While ForLoopControl.ForNextCheckObj(obj8, obj11, obj8)
    End If
    Return RuntimeHelpers.GetObjectValue(obj7)
End Function

Private Function GenerateString(ByVal length As Integer, ByVal content As Integer, ByVal casing As Integer) As String


    ' the random generators
    Dim r, r1, r2 As New Random

    'the final generated string
    Dim gString As String = String.Empty

    Dim LowAlph As String = "abcdefghijklmnopqrstuvwxyz"
    Dim UppAlph As String = LowAlph.ToUpper

    Dim addLetter As Char

    Do Until gString.Length = length
        Select Case casing
            Case 0
                Select Case r.Next(0, 2)
                    Case 0
                        addLetter = LowAlph.Substring(r1.Next(0, 25), 1)
                    Case 1
                        addLetter = UppAlph.Substring(r1.Next(0, 25), 1)
                End Select
            Case 1
                addLetter = LowAlph.Substring(r1.Next(0, 25), 1)
            Case 2
                addLetter = UppAlph.Substring(r1.Next(0, 25), 1)
        End Select
        'add the next character to "gString"
        Select Case content
            Case 0
                Select Case r.Next(0, 2)
                    Case 0
                        gString &= addLetter
                    Case 1
                        gString &= r1.Next(TextBox6.Text, TextBox5.Text) ' (0, 9)
                    Case 2
                        gString &= addLetter
                End Select
            Case 1
                gString &= r1.Next(TextBox6.Text, TextBox5.Text)    '(0, 9)
            Case 2
                gString &= addLetter
        End Select
    Loop

    Return gString

End Function
Function RandomString(cb As Integer) As String

    Randomize()
    Dim rgch As String
    rgch = "abcdefghijklmnopqrstuvwxyz"
    rgch = rgch & UCase(rgch) & "0123456789"

    Dim i As Long
    For i = 1 To cb
        RandomString = RandomString & Mid$(rgch, Int(Rnd() * Len(rgch) + 1), 1)
        RandomString = textbox1.text
    Next

End Function

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 > 0& Then
        Randomize()
        '     chars = charset
        chrUprBnd = Len(charset) - 1&
        length = (length * 2&) - 1&
        ReDim value(length)
        For i = 0& To length Step 2&
            value(i) = chars(CLng(chrUprBnd * Rnd) * 2&)
        Next
    End If
    ' RandomString = value
End Function

I don't remember anymore how it used to work :/.

3

There are 3 best solutions below

2
On
0
On

Try: http://www.codeproject.com/Articles/423229/CsharpRandomStringGenerator this has always worked for me before

Also check out old thread : How can I generate random alphanumeric strings in C#?

Just Modify for 20char & add '-' as required

0
On

This should be able to help you in case of generating variable length tokens

    private static Random random = new Random();

    public static string RandomToken(int length, string characterSet = "abcdefghijklmnopqrstuvwxyzABCDDEFGHIJKLMNOPQRSTUVWXYZ")
    {
        var builder = new StringBuilder();
        while(builder.Length < length) 
        {
            builder.Append(characterSet.ToCharArray()[random.Next(characterSet.Length)]);
        }
        return builder.ToString();
    }

of course you can add . - _ in between the string as you like