DelphiBasics
AnsiUpperCase
Function
Change lower case characters in a string to upper case SysUtils unit
 function AnsiUpperCase(const MixedString string):string;
Description
The AnsiUpperCase function creates a copy of MixedString with all letters converted to upper case.
 
All Ansi commands support multi-byte and accented characters.
Notes
AnsiUpperCase supercedes the UpperCase function.

Multi-byte character sets are operating system defined. For example, Oriental versions of Windows uses multi-byte characters to support their very large set of primitives ('letters').
Related commands
AnsiLowerCaseChange upper case characters in a string to lower case
UpCaseConvert a Char value to upper case
 Download this web site as a Windows program.




 
Example code : Converting a mixed case string to upper case
var
  SimpleString : string;

begin
  SimpleString := AnsiUpperCase('The Cat Sat On The MAT');
  ShowMessage('SimpleString : '+SimpleString);
end;
Show full unit code
  SimpleString : THE CAT SAT ON THE MAT
 
Delphi Programming © Neil Moffatt . All rights reserved.  |  Home Page