indexOf

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

描述

indexOf 函数返回指定值在字符串中第一次出现的位置。主字符串中的位置以零开始,第二个位置是 1,第三个是 2,依此类推。indexOf 函数区分大小写。

语法

<string>.indexOf(<substring>)

(或)

find(<string>, <substring>)

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

indexOf/find 函数语法有以下参数。

string - 必需。要搜索的主字符串

substring - 必需。从哪个位置开始搜索

返回值

返回一个数字,它指的是指定搜索值第一次出现的位置,如果从未出现则返回 -1。 

示例

text="Hello world, welcome to the universe"

text.indexOf("e"); //返回 1

text.indexOf("H"); //返回 0

text.indexOf("z"); //返回 -1

find("Hello world, welcome to the universe","e"); //返回 1

find("Hello world, welcome to the universe","H"); //返回 0

find("Hello world, welcome to the universe","z"); //返回 -1