Show contents 

System > System Assembly Classes > String > String.ToLower

String.ToLower

Syntax

ToLower(Source: String): String;

Parameters

Source. Source string.

Description

The ToLower method makes all the characters of the specified string lowercase.

Example

Sub UserProc;
Var
    s, s1: String;
Begin
    s := "aBcDeF";
    s1 := String.ToLower(s);
End Sub UserProc;

After executing the example the "s1" variable contains the "s" string, all the characters of which are lowercase: "abcdef".

See also:

String