LCase()

Converts the alphabetic characters in a string to lowercase.

LCase( string=string );

Returns: String

Argument Description
string
string, required

A string or a variable that contains one

Examples

// create variable with a string of text
  foo = "Hello World!";
  // output variable in lower case
  writeOutput(LCase(foo));

See also