Link Search Menu Expand Document

upper

Explanation Converts lowercase letters in strings to uppercase.
Call format var s = upper( strings )
Return value String with lowercase letters converted to uppercase
Arguments String string Original character string
Exception None
Example of use
var str = "I have a book. I have a pen.";
var s = upper(str);
print(s, "\n");
Related item lower method