Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim arrayChar()
Dim strChar
strChar = "info"
ReDim arrayChar(Len(strChar))
For idx = 1 to UBound(arrayChar)
arrayChar(idx) = Mid(strChar,idx,1)
Next
For idx = 1 To UBound(arrayChar)
MsgBox ("Character " & idx & " = " & arrayChar(idx))
Next
MyStr = LCase("AaBbCc")
'MyStr is now "aabbcc"
MyStr = UCase("AaBbCc")
'MyStr is now "AABBCC"