UpperCase
Return an uppercase version of a string.
Declaration
Source position: sysstrh.inc line 72
function UpperCase(const s: string) : string; Overload;
function UpperCase(const s: string; LocaleOptions: TLocaleOptions)
: string; Overload;
function UpperCase(const s: UnicodeString) : UnicodeString; Overload;
Description
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 compatibility only.
Errors
None.
See also
Name | Description |
---|---|
AnsiLowerCase | Return a lowercase version of a string. |
AnsiUpperCase | Return an uppercase version of a string, taking into account special characters. |
LowerCase | Return a lowercase version of a string. |
Example
Program Example87;
{ This program demonstrates the UpperCase function }
Uses sysutils;
Begin
Writeln (UpperCase('this will come OUT ALL uPpErCaSe !'));
End.