From Clomosy Docs
function UpperCase(const S: string):string;
Creates a copy of a string with all letters converted to uppercase.
Example
var
SimpleString : String;
{
SimpleString = UpperCase('I am learning CLOMOSY.');
ShowMessage(SimpleString);
}
Output:
I AM LEARNING CLOMOSY.