LowerCase Function

Top  Previous  Next

Returns the lower-case version of the given string

 

Short form: "lcase".

 

Syntax

 

value = LowerCase( inputString )

 

inputString                        String to lower case

 

Parameters

inputString

 

string to lower case

 

 

 

returns

 

the lower-cased version of the input string

 

Examples

The following examples illustrate the use of the LowerCase  function:

 

value = LowerCase( "Hello" )        ' Returns "hello"

value = LowerCase( "HELLO" )        ' Returns "hello"