show/hide this revision's text 3 Moved charset up to parameter.; added 129 characters in body

Hi Jackie,
You didn't really say what you were using this for. If you need small strings (<=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:))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":) :

Public Function RandomString(ByVal RandomString( _
    ByVal length As Long) As String
    Const strChars_c , _
    Optional charset As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
    abcdefghijklmnopqrstuvwxyz0123456789" _
    ) As String
    Dim chars() As Byte, value() As Byte, chrUprBnd As Long, i As Long
    If length > 0& Then
        Randomize
        chars = strChars_c
        charset
        chrUprBnd = Len(strChars_cLen(charset) - 1&
        length = (length * 2&) - 1&
        ReDim value(length) As Byte
        For i = 0& To length Step 2&
            value(i) = chars(CLng(chrUprBnd * Rnd) * 2&)
        Next
    End If
    RandomString = value
End Function
show/hide this revision's text 2 Mostly just micro-optimization. No real point.

Hi Jackie,
You didn't really say what you were using this for. If you need small strings (<=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:)):

Public Function RandomString(ByVal length As Long) As String
    Const strChars_c As String = _
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
    Dim chars() As ByteDim i As Long, value() As ByteDim , chrUprBnd As Long, i As Long
    If length > 0& Then
        Randomize
        chars = StrConv(strChars_c, vbFromUnicode) '<-Totally ripped off Joel:)
    strChars_c
        chrUprBnd = UBound(charsLen(strChars_c) - 1&
        length = (length * 2&) - 1'Offset for zero based counting.
    &
        ReDim value(length) As Byte
        For i = 0& To length Step 2&
            value(i) = chars(RandBetween(0, chrUprBnd)chars(CLng(chrUprBnd * Rnd) * 2&)
        Next
    RandomString = StrConv(value, vbUnicode)
End Function

Private Function RandBetween(ByVal lowerBound As Long, ByVal upperbound As Long) As Long
    Static isInid As Boolean
    If Not isInid Then
        isInid = True
        Randomize
    End If
    RandBetween RandomString = CLng((upperbound - lowerBound) * Rnd + lowerBound)
value
End Function
show/hide this revision's text 1

Hi Jackie,
You didn't really say what you were using this for. If you need small strings (<=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:)):

Public Function RandomString(ByVal length As Long) As String
    Const strChars_c As String = _
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
    Dim chars() As Byte
    Dim i As Long, value() As Byte
    Dim chrUprBnd As Long
    chars = StrConv(strChars_c, vbFromUnicode) '<-Totally ripped off Joel:)
    chrUprBnd = UBound(chars)
    length = length - 1 'Offset for zero based counting.
    ReDim value(length) As Byte
    For i = 0 To length
        value(i) = chars(RandBetween(0, chrUprBnd))
    Next
    RandomString = StrConv(value, vbUnicode)
End Function

Private Function RandBetween(ByVal lowerBound As Long, ByVal upperbound As Long) As Long
    Static isInid As Boolean
    If Not isInid Then
        isInid = True
        Randomize
    End If
    RandBetween = CLng((upperbound - lowerBound) * Rnd + lowerBound)
End Function