From Clomosy Docs
No edit summary |
ClomosyAdmin (talk | contribs) No edit summary |
||
| (One intermediate revision by one other user not shown) | |||
| Line 6: | Line 6: | ||
<b>Example</b><br> | <b>Example</b><br> | ||
<pre> | <pre> | ||
var | var | ||
| Line 15: | Line 15: | ||
ShowMessage(SimpleString); | ShowMessage(SimpleString); | ||
} | } | ||
</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
function AnsiUpperCase(const S: string): string;
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:
I AM LEARNING CLOMOSY.