upper

语法

upper(X)

参数

X 是一个字符串标量或向量。

详情

upper 函数把字符串或字符串列表中的所有字符转换为大写。

例子

x = `Ibm`C`AapL;
x.upper();
# output
["IBM","C","AAPL"]

(`Thl).upper();
# output
THL

相关函数: lower