LCASE

Concept Link IconSee also

Convert the characters of a string to lower case.

WebVue support - Yes.

Syntax

StrVal = LCASE(Input);

Return type: STR.

Argument

Meaning

Input

The string to be converted. Type STR.

Example

SUB Main()

DIM strResult as Str;

DIM strString as Str;

 

strString = "STRING IN CAPITALS";

strResult = LCase( strString );

PRINT("Result is: ", strResult );

'displays "Result is: string in capitals"

END SUB