From Clomosy Docs

Revision as of 10:32, 13 November 2024 by ClomosyManager (talk | contribs)

The AnsiUpperCase function creates a copy of String with all letters converted to upper case. All Ansi commands support multi-byte and accented characters.

Example

 var
   SimpleString : String;
 
 {
   SimpleString = AnsiUpperCase('I am learning CLOMOSY.');
   ShowMessage(SimpleString);
 }

Output:

See Also