getOccurenceCount

本节介绍 Zoho Creator 中的 getOccurenceCount 函数的语法和使用。

描述

getOccurenceCount 函数获取子字符串在给定字符串中的出现次数。

语法

<string>.getOccurenceCount(<substring>)

(或)

getOccurenceCount(<string>, <substring>)

//仅在脚本构建器的自由流程脚本模式下才支持此格式。

getOccurenceCount 函数语法有以下参数。

string - 必需。您想要从中查找字符串出现次数的主字符串。 

substring - 必需。要在主字符串内搜索的字符串。

返回值

返回子字符串的出现次数,结果为数字。 

示例

text="Zoho Creator is an online database service to create custom database applications" ;

text.getOccurence>Count("database">); //返回 2

text="Zoho Creator is an online database service to create custom database applications";

getOccurenceCount(text , "database"); //返回 2