System.SysUtils.UpperCase
Delphi
function UpperCase(const S: string): string;
function UpperCase(const S: string; LocaleOptions: TLocaleOptions): string;
C++
extern DELPHI_PACKAGE System::UnicodeString __fastcall UpperCase(const System::UnicodeString S)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
Returns a copy of a string in uppercase.
UpperCase returns a copy of the string S, with the same text but with all 7-bit ASCII characters between 'a' and 'z' converted to uppercase. To convert 8-bit international characters, use AnsiUpperCase instead.
See Also
Code Examples