[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Return lowercase version of a string.
Source position: systemh.inc line 1182
function LowerCase( |
const s: shortstring |
):shortstring; overload; |
c: Char |
):Char; overload; |
const s: ansistring |
):ansistring; |
const s: UnicodeString |
):UnicodeString; |
c: UnicodeChar |
):UnicodeChar; |
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.
Lowercase does not change the number of characters (or bytes) in an ansistring.
None.
|
Convert a string to all uppercase. |
program Example73; { Program to demonstrate the Lowercase function. } var c:char; begin for c:='A' to 'Z' do write(lowercase(c)); Writeln; Writeln(Lowercase('ABCDEFGHIJKLMNOPQRSTUVWXYZ')); end.