JavaScript 字符串 lastIndexOf()
示例
搜索“planet”的最后一次出现
let text = "Hello planet earth, you are a great planet.";
let result = text.lastIndexOf("planet");
尝试一下 »
let text = "Hello planet earth, you are a great planet.";
let result = text.lastIndexOf("Planet");
尝试一下 »
更多示例如下。
描述
The lastIndexOf()
方法返回指定值在字符串中最后一次出现的索引(位置)。
The lastIndexOf()
方法从末尾到开头搜索字符串。
The lastIndexOf()
方法从开头返回索引(位置 0)。
The lastIndexOf()
方法如果未找到该值,则返回 -1。
The lastIndexOf()
方法区分大小写。
另请参见
语法
string.lastIndexOf(searchvalue, start)
参数
参数 | 描述 |
searchvalue | 必需的。 要搜索的字符串。 |
start | 可选的。 开始位置。 默认值为字符串长度。 |
返回值
类型 | 描述 |
数字 | 搜索值出现的位置。 -1 如果从未出现。 |
更多示例
搜索“planet”的最后一次出现,从位置 20 开始
let text = "Hello planet earth, you are a great planet.";
let result = text.lastIndexOf("planet", 20);
尝试一下 »
浏览器支持
lastIndexOf()
是 ECMAScript1 (ES1) 的功能。
ES1 (JavaScript 1997) 在所有浏览器中均得到完全支持
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 是 |