DOWNCASE()

Top  Previous  Next

 

The DOWNCASE() function returns a string with all letters converted to lower case.

 

 

Format

 

DOWNCASE(string)

 

where

 

stringevaluates to the string in which substitution is to occur.

 

 

The DOWNCASE() function returns the value of string with all letters converted to lower case. If string is a variable rather than an expression, the value of the variable is not affected.

 

 

Example

 

REF.NO = "A12F635"

PRINT DOWNCASE(REF.NO)

 

This program fragment prints the string "a12f635".

 

 

See also:

UPCASE()