Find 函数

目的

此页说明 Zoho People 中的 find 函数的描述、语法和示例。

描述

此函数返回所提供的文本字符串内的指定字符或子字串的位置。此函数区分大小写。

语法

Find(within_text,find_text,number)

  • within_text:您想要查找的字符或子字串。
  • find_text:待搜索的文本字符串。
  • number:一个参数,指定了文本字符串内搜索开始的位置。

返回值

此函数返回搜索字符串第 n 次出现的索引。如果未找到搜索字符串的第 n 次出现,则返回 -1。

示例

Find( 'greenery', 'n', 1 );返回 5