UCase and LCase
These functions make a chosen string UpperCase (Capital letters) or LowerCase (Small Letters)
UCase
Use -
Code:[NewString] = Ucase([String])
Example -
[Otherstring] would now be "ABCDEFGHIJK"Code:mystring = "abcdefghijk" otherstring = UCase(mystring)
LCase
Use -
Example -Code:[NewString] = Lcase([String])
[OtherString] would now be "abcdefghijk"Code:mystring = "ABCDEFGHIJK" otherstring = LCase(mystring)




Reply With Quote