lastIndexOf

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

描述

lastIndexOf 函数返回指定值在字符串中最后一次出现的位置。  字符串中的位置以零开始,第二个位置是 1,第三个是 2,依此类推。如果要搜索的值从未出现,则此方法会返回 -1。

注:lastIndexOf() 方法区分大小写!

语法

<string>.lastIndexOf(<substring>)

(或)

lastIndexOf(<string>, <substring>)

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

lastIndexOf 函数语法有以下参数。

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

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

返回值

返回一个数字,它指的是指定值在字符串中最后一次出现的位置,如果从未出现则返回 -1。

示例

text="Hello world, welcome to the universe";

text.lastIndexOf("e"); //返回 35

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

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

lastIndexOf("Hello world, welcome to the universe","e"); //返回 35

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

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