startsWith function
本节介绍 Zoho Creator 中的 startsWith 函数的语法和使用。
描述
startsWith 函数检查 string1 是否以 string2 开始。如果 string1 以 string2 开始,则返回 true。否则返回 false。
语法
.startsWith()
(或)
startsWith(,)
//仅在脚本构建器的自由流程脚本模式下才支持此格式。
startsWith 函数语法有以下参数。
string1 - 必需。您想要从中查找开始字符串 (str2) 的主字符串。
string2 - 必需。要在主字符串 (str1) 内搜索的开始字符串。
示例
a. 在下面的示例中,startsWith 函数返回 true。
Name = "ZohoCreator";
startsWith(Name,"Zoho") //返回 true
Name = "ZohoCreator";
Name.startsWith("Zoho") //返回 true
相关函数
startsWithIgnoreCase (str1 ,str2) R | 如果第一个参数字符串以第二个参数字符串开始,则返回 true。否则返回 false。 |
endsWithIgnoreCase (str1 , str2) R | 如果第一个参数字符串以第二个参数字符串结束,则返回 true。否则返回 false。 |