Prototype
StrOutput:=UpperCase(strInput)
Description
It returns the same string to the shown one but completely in capitals.
Parameters
StrInput: input string.
Returned value
StrOutput: output string.
Notes
None.
Example
// It opens a text file
UnFile:=('c:\documents\letter.txt',false);
// It reads a line from file
text:=TextFileReadln(UnFile);
// It shows a message with the read text
ApplicationLog(_CurrentAgent,'File contains the following text: ' + text);
// It returns in upper case
NewText=UpperCase(text);
// It shows a message with the modified read text
ApplicationLog(_CurrentAgent,'Here it is the modified text : ' + NewText);
// It closes the file
FileClose(UnFile);