removeFirstOccurence
本节介绍 Zoho Creator 中的 removeFirstOccurence 函数的语法和使用。
描述
removeFirstOccurence 函数从给定字符串中删除第一次出现的子字符串。返回其余字符串。
语法
<string>.removeFirstOccurence(substring)
(或)
removeFirstOccurence(<string>,<substring>) //仅在脚本构建器的自由流程脚本模式下才支持此格式。
removeFirstOccurence 函数语法有以下参数。
string - 必需。您想要从中删除 str2 的主字符串。
substring - 必需。要在主字符串 (str1) 内搜索的字符串。
示例
Name = "ZohoCreator";
Name.removeFirstOccurence("o") //返回 "ZhoCreator"
Name = "ZohoCreator";
removeFirstOccurence(Name,"o") //返回 "ZhoCreator"