Functions Delphi

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
AnsiLowerCase Change upper case characters in a string to lower case
AnsiUpperCase Change lower case characters in a string to upper case