DelphiBasics
UpperCase
Obsolete
Change lower case characters in a string to upper case SysUtils unit
 function UpperCase(const MixedString string):string;
Description
The UpperCase function creates a copy of MixedString with all letters converted to upper case.
 
It is obsolete - use AnsiUpperCase instead, which takes into account multi-byte strings, and accented characters.
 
Related commands
AnsiLowerCaseChange upper case characters in a string to lower case
AnsiUpperCaseChange lower case characters in a string to upper case
 Download this web site as a Windows program.




 
Delphi Programming © Neil Moffatt . All rights reserved.  |  Home Page