[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Return an uppercase version of a string.
Source position: sysstrh.inc line 71
function UpperCase( |
const s: string |
):string; overload; |
const s: UnicodeString |
):UnicodeString; overload; |
UpperCase returns the uppercase equivalent of S. Ansi characters are not taken into account, only ASCII codes below 127 are converted. It is completely equivalent to the UpCase function of the system unit, and is provided for compatiibility only.
None.
|
Return a lowercase version of a string. |
|
|
Return a lowercase version of a string. |
|
|
Return an uppercase version of a string, taking into account special characters. |
Program Example87; { This program demonstrates the UpperCase function } Uses sysutils; Begin Writeln (UpperCase('this will come OUT ALL uPpErCaSe !')); End.