firstCharToLower

firstCharToLower() updating;

The firstCharToLower method of the String primitive type converts an uppercase first character in the receiving string to lowercase, according to the conventions of the current locale.

The following example shows the use of the firstCharToLower method.

vars
    stringValue : String;
begin
    stringValue := 'HELLO WORLD';
    stringValue.firstCharToLower;
    write stringValue;           // Outputs 'hELLO WORLD'
end;