From Clomosy Docs

Revision as of 13:36, 24 December 2024 by ClomosyAdmin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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