Development tools : Global functions : String category : lowerCase
  
lowerCase
Description
Converts to lower case.
Usage
Client side: Y
Server side: Y
Syntax
String lowerCase(String string)
Argument
string
The string to be manipulated. The argument can be any string.
Return
Returns the String converted to lowercase.
Example
lowerCase("Hello")
returns "hello".
Go up to
String category