LCASE & UCASE
Action

Converts a string into lower or upper case.

Syntax

dest = LCASE( source )

dest = UCASE( source )

Remarks

dest The string variable that will be assigned with the lower or upper case of string SOURCE.
source The source string. The original string will be unchanged.
See also


Example


Dim s as string * 12 , Z as string * 12
INPUT "Hello " , s 'assign string
s = LCASE(s) 'convert to lowercase
Print s 'print string

s = UCASE(s) 'convert to upper case
Print s 'print string