AnsiUpperCase
Belongs to : FunctionDescription
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').
Example code
1 2 3 4 5 6 7 8 9 |
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 |