lower()

Scalar. Returns a new string where all the characters of the given string are lowercase.

Syntax

lower ( string )

Parameters

string

A string.

Usage

Returns a string where all the characters of a given string are lowercase. The function takes a string as its argument, and the function returns a string.

Example

upper ('This Is A Test') returns 'this is a test'.