删除字符串函数
本节介绍 Zoho Creator 中的 remove 函数的语法和使用。
描述
remove 函数删除字符串的指定部分并返回剩余字符串。
语法
<string>.remove(<substring>)
(或)
remove(<string>,<substring>)
// 仅在脚本构建器的自由流程脚本模式下才支持此格式。
// 仅在脚本构建器的自由流程脚本模式下才支持此格式。
remove 函数语法有以下参数。
string - 必需。您想要从中删除指定字符串 (substring) 的主字符串。
substring - 必需。要从主字符串 (string) 内删除的字符串。
示例
Name = "ZohoCreator";
Name.remove("Zoho") //返回 "Creator"
Name = "ZohoCreator";
remove(Name,"Zoho") //返回 "Creator"