upper
Syntax
upper(X)
Arguments
X is a string scalar/vector.
Details
Convert all characters in a string or a list of strings into upper cases.
Examples
x = `Ibm`C`AapL;
x.upper();
// output
["IBM","C","AAPL"]
(`Thl).upper();
// output
THL
Related function: lower