NexJ Logo

Lower()

Converts all of the characters in the specified string of text to lower case. This function takes a string value as an argument and returns a string value.

Syntax

Lower(<text_to_convert>)

Input

text_to_convert

string, null

The text to convert to lower case.

Output

string

Examples

  • The expression Lower("ABC") returns "abc".
  • The expression Lower("Abc") returns "abc".
  • The expression Lower("abc") returns "abc".