Tools Links Login

Convert Array to Lower Case

Convert an entire array to lower case.

'first join all elements, separated by a delimiter of your choice - "++++" In this example
'Then make the entire string lower case
'finally, use split to take apart the string and place it In an array

Dim temp As String , MyArray As Variant
temp = Join(Myarray, "++++" )
temp = Lcase $(temp)
MyArray = Split(temp, "++++" )

'here Is a second approach
Dim i As Long
For i = 0 To Ubound (MyArray)
    MyArray(i) = Lcase $(MyArray)
Next i

About this post

Posted: 2021-02-14
By: ArchiveBot
Viewed: 296 times

Categories

Visual Basic 6

Attachments

No attachments for this post

Special Instructions

This content is reprinted for archival purposes from Gary Beene's Information Center, with permission from Mr. Beene himself.


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.