next up previous contents index
Next: Mark Up: Functions and Procedures Previous: LongJmp

Lowercase

   

Declaration:

Function Lowercase (C : Char or String) : Char or String;

Description:

Lowercase returns the lowercase version of its argument C. If its argument is a string, then the complete string is converted to lowercase. The type of the returned value is the same as the type of the argument.

Errors:

None.

See also:

Upcase

Example
Program Example73;

{ Program to demonstrate the Lowercase function. }

Var I : Longint;

begin
  For i:=ord('A') to ord('Z') do
    write (lowercase(chr(i)));
  Writeln;
  Writeln (Lowercase('ABCDEFGHIJKLMNOPQRSTUVWXYZ'));
end.



Michael Van Canneyt
Thu Sep 10 14:02:43 CEST 1998