lower

语法

lower(X)

参数

X 可以是字符串标量或向量。

详情

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

例子

x= `Ibm`C`AapL;
x.lower();
# output
["ibm","c","aapl"]

lower(`Thl);
# output
thl

相关函数:upper