您的位置:

使用JavaScript查找字符串最后一次出现的位置

在JavaScript中,如果需要查找一个字符串的最后一次出现的位置,可以使用lastIndexOf()方法。该方法返回指定字符串最后出现的位置。如果没找到该字符串,则返回-1。

一、lastIndexOf()方法的基本使用

lastIndexOf()方法可以接受两个参数,第一个参数是要查找的字符串,第二个参数是可选的,表示从哪个位置开始查找。如果未传入第二个参数,则默认从字符串的末尾开始查找。

const str = "hello world";
const lastIndex = str.lastIndexOf("o");
console.log(lastIndex); // 7

上面的代码中,lastIndexOf()方法查找字符串中最后一次出现字母o的位置,并返回7。

二、lastIndexOf()方法查找多次出现的字符串

如果要查找一个字符串中多次出现的某个字符串最后一次出现的位置,可以通过循环使用lastIndexOf()方法来实现。

const str = "hello world";
let lastIndex = str.lastIndexOf("o");
while(lastIndex !== -1) {
  console.log(lastIndex);
  lastIndex = str.lastIndexOf("o", lastIndex - 1);
}

上面的代码中,while循环通过lastIndexOf()方法查找字符串中所有字母o的位置,并依次输出。

三、lastIndexOf()方法的使用场景

lastIndexOf()方法可用于以下场景:

1、判断字符串中是否含有某个子串

const str = "hello world";
const hasSubstr = str.lastIndexOf("o") !== -1;
console.log(hasSubstr); // true

上面的代码中,判断字符串中是否含有字母o。

2、查找某个字符在字符串中最后一次出现的位置

const str = "/usr/local/bin/node";
const lastIndex = str.lastIndexOf("/");
const filename = str.substring(lastIndex + 1);
console.log(filename); // node

上面的代码中,查找字符串中最后一个反斜杠的位置,并从该位置分割字符串,获取文件名。

3、反转字符串

const str = "hello world";
let reversedStr = "";
let lastIndex = str.length - 1;
while(lastIndex >= 0) {
  reversedStr += str[lastIndex];
  lastIndex--;
}
console.log(reversedStr); // dlrow olleh

上面的代码中,循环使用lastIndexOf()方法,依次将字符串反转。

四、总结

lastIndexOf()方法是JavaScript中用于查找字符串最后一次出现位置的方法。使用该方法可以实现许多字符串操作,如反转字符串等。在使用该方法时,需要注意该方法返回的是索引值,若找不到对应的字符串则返回-1。

使用JavaScript查找字符串最后一次出现的位置

2023-05-11
使用Java lastIndexOf方法查找字符串最后一个出

2023-05-10
java查找字符串,java查找字符串出现的位置

2022-11-29
java查找字符串,java查找字符串中字符出现的次数

2022-12-02
PHP strripos函数:查找字符串中最后一次出现子串的

2023-05-11
使用 PHP strrpos 函数查找字符串中最后一次出现指

2023-05-11
stringlastindexof:详解字符串的最后一次出现

2023-05-19
Python rindex:字符串中查找特定字符最后出现的位

2023-05-13
使用PHP strrpos函数在字符串中查找最后一个字符出现

2023-05-11
php取字符串最后5位,php 获取字符串最后一个字符

2023-01-09
php获取字符,php获取字符串首次出现的位置

2022-11-30
java字符串查找,java字符串查找替换

2023-01-07
Python rfind实现查找字符串最后一个匹配项

2023-05-13
Python 程序:寻找字符串中的字符的最后一次出现

2022-07-24
如何使用C#的LastIndexOf方法查找字符串中最后一个

2023-05-17
htmljs编程笔记(html代码笔记)

本文目录一览: 1、html代码和JS代码有什么区别 2、如何在html中调用js函数 3、JavaScript学习笔记之数组基本操作示例 4、HTML5初学者笔记 5、《web前端笔记7》js字符—

2023-12-08
java字符串查找,java字符串查找大写字母

2023-01-05
使用JavaScript截取字符串最后一个字符

2023-05-10
Java查找字符串的方法

2023-05-11
java查找,java查找字符串中指定字符

2023-01-05