getPrefix
本节介绍 Zoho Creator 中的 getPrefix 函数的语法和使用。
描述
getPrefix 函数返回的结果是,从第一个参数字符串开始,一直到第二个参数字符串第一次出现时为止。返回前缀。
语法
getPrefix(string , substring)
(或)
string.getPrefix(substring)
getPrefix 函数语法有以下参数。
string - 必需。您想要从中获取前缀的主字符串。
substring - 必需。要在主字符串内搜索的字符串。
如果未找到子字符串,则返回空值。
示例
Name = "Create online database applications with Zoho Creator";
Name.getPrefix("with") //返回 "Create online database applications "
Name = "Create online database applications with Zoho Creator";
getPrefix(Name,"with") //返回 "Create online database applications "