Skip to end of banner
Go to start of banner

toLower

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Description

Returns the string only with lower case letters. If the string contains other characters than letters the chars that are not letters will not be converted.

Parameters

Return Type

String

Examples

Example 1

wret = toLower("FOoBaR");
print(wret);

Prints "foobar"

Example 2

wret = toLower("ABC2345f.ff");
print(wret);

Prints "abc2345f.ff"

See also

  • No labels