From Clomosy Docs

No edit summary
No edit summary
 
(One intermediate revision by one other user not shown)
Line 6: Line 6:


<b>Example</b><br>
<b>Example</b><br>
<b>TRObject Syntax</b><br>
 
<pre>
<pre>
  var
  var
Line 15: Line 15:
   ShowMessage(SimpleString);
   ShowMessage(SimpleString);
  }
  }
</pre>
<b>Base Syntax</b><br>
<pre>
var
SimpleString : String;
begin
SimpleString := AnsiUpperCase('I am learning CLOMOSY.');
ShowMessage(SimpleString);
end;
</pre>
</pre>


Line 34: Line 24:
<h2> See Also </h2>
<h2> See Also </h2>
* [[System_Library#String_Functions | String Functions]]
* [[System_Library#String_Functions | String Functions]]
{{#seo:|title=AnsiUpperCase Using in Clomosy - Clomosy Docs}}

Latest revision as of 13:36, 24 December 2024

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