toUpperCase
本节介绍 Zoho Creator 中的 toUpperCase 函数的语法和使用。
描述
toUpperCase 函数将指定字符串中的所有字母转换为大写字母。如果字符串中包含非字母字符,则它们不受此函数影响。 返回大写的字符串。
语法
<string>.toUpperCase()
(或)
upper(string)
//仅在脚本构建器的自由流程脚本模式下才支持此格式。
此函数语法有以下参数。
string - 必需。要转换为大写的字符串。
示例 1
Name="Create online database applications"
Name.toUpperCase() //返回 "CREATE ONLINE DATABASE APPLICATIONS"
("123abc") .toUpperCase() //返回 "123ABC"
upper(Name) //返回 "CREATE ONLINE DATABASE APPLICATIONS"
upper("123abc") //返回 "123ABC"
示例 2
您可以使用以下脚本让专有名词的第一个字母大写,其余字母小写:
string getCapitalised(string txt)
{
if ((input.txt).length() > 0)
{
input.txt = (((input.txt).subString(0,1)).toUpperCase()) + (input.txt).subString(1,(input.txt).length());
}
return input.txt;
}
{
if ((input.txt).length() > 0)
{
input.txt = (((input.txt).subString(0,1)).toUpperCase()) + (input.txt).subString(1,(input.txt).length());
}
return input.txt;
}