Switch Case
Posted: 2002-06-01
By: ArchiveBot
Viewed: 175
Filed Under:
No attachments for this post
Did you know that the capital letters are different from the small letters only by one bit?
A = 01000001 while a = 01100000 the 3rd bit is the capitalization
Original Author: Lefteris Eleftheriades
Code
Private Sub Form_Load()
MsgBox SwitchCase("Sex") 'returns sEX
End Sub
Function SwitchCase(Text As String) As String
Dim i&, out$
For i = 1 To Len(Text)
out = out & Chr(Asc(Mid(Text, i, 1)) Xor 32)
Next
SwitchCase = out
End Function
Comments on this post
No comments have been added for this post.
You must be logged in to make a comment.