From Clomosy Docs
No edit summary |
ClomosyAdmin (talk | contribs) No edit summary |
||
| Line 24: | 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.