From Clomosy Docs
No edit summary |
ClomosyAdmin (talk | contribs) No edit summary |
||
| (5 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
<div class="alert alert-ligth border border-3 border-primary-subtle rounded-5 p-4 shadow-sm" role="alert"> | |||
function AnsiUpperCase(const S: string): string; | |||
</div> | |||
The AnsiUpperCase function creates a copy of String with all letters converted to upper case. All Ansi commands support multi-byte and accented characters.<br> | The AnsiUpperCase function creates a copy of String with all letters converted to upper case. All Ansi commands support multi-byte and accented characters.<br> | ||
<b>Example</b><br> | |||
<pre> | |||
var | var | ||
SimpleString : String; | |||
{ | |||
SimpleString = AnsiUpperCase('I am learning CLOMOSY.'); | |||
ShowMessage(SimpleString); | |||
} | |||
</pre> | |||
: | <b>Output:</b><br> | ||
<div class="alert alert-success" role="alert" data-bs-theme="light"> | |||
I AM LEARNING CLOMOSY. | |||
</div> | |||
<h2> See Also </h2> | |||
* [[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.