Siebel eScript Language Reference > Siebel eScript Commands > String Objects >

toLowerCase() Method


This method returns a copy of a string with the letters changed to lower case.

Syntax

stringVar.toLowerCase()

Parameter
Description

Not applicable

 

Returns

A copy of stringVar in lowercase characters.

Usage

This method returns a copy of stringVar with uppercase letters replaced by their lowercase equivalents.

Example

The following code fragment assigns the value "e. e. cummings" to the variable poet:

var poet = "E. E. Cummings";
poet = poet.toLowerCase();

See Also

toUpperCase() Method

Siebel eScript Language Reference