LOWER$()

LOWER$(S)

RETURNS THE STRING CONVERTING STRING S TO LOWERCASE

  • Type: Function
  • Parameter: 1
  • Group: Strings

ACTION

The function LOWER$(S) returns the string converting string S to lowercase.

Remark: the keyword LOWER$ ends by '$' : it means that the returned value is a string.

SYNTAX: Result$=LOWER$(S)

  • S = string expression.
  • Result$ is a string.

USE

  • The function LOWER$() is used to convert a string to lowercase.

ERROR

  • If S is not a correct string expression.

EXAMPLE

print lower$("ABC")

print "abc"

SEE ALSO

INSERT$()

INSTR()

LEFT$()

LEN()

LTRIM$()

MID$()

RIGHT$()

RTRIM$()

STR$()

STRING$()

TRIM$()

UPPER$()