LCASE

Top  Previous  Next

Action

Converts a string into lower or upper case.

 

 

Syntax

dest = LCASE( source )

 

 

Remarks

dest

The string variable that will be assigned with the lower case of string SOURCE.

source

The source string. The original string will be unchanged.

 

 

See also

UCASE

 

 

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