firstCharToLower

firstCharToLower() updating;

The firstCharToLower method of the StringUtf8 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
    str8 : StringUtf8;
begin
    str8 := @'HELLO WORLD';
    str8.firstCharToLower;
    write str8;           // Outputs 'hELLO WORLD'
end;