您的位置:

Java中lastIndexOf方法的用法

一、lastIndexOf方法的基本介绍

lastIndexOf方法是String类的一个实例方法,用于查找某个字符或子字符串在字符串中最后一次出现的位置。lastIndexOf方法有两个重载版本:一个是只接受一个字符参数,另一个是接受一个字符串参数。下面是lastIndexOf方法的基本语法:

public int lastIndexOf(int ch)
public int lastIndexOf(String str)

上述两个方法都返回该字符或字符串在原字符串中最后一次出现的位置,如果没有找到返回-1。

二、应用示例

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

下面是一个示例,演示如何使用lastIndexOf方法查找某个字符在字符串中最后一次出现的位置。

String str = "hello world";
int position = str.lastIndexOf('o');
System.out.println(position); // 输出7

在上面的代码中,我们查找字符串"hello world"中最后一次出现字符'o'的位置,由于字符'o'在字符串中出现了两次,所以lastIndexOf方法返回第二个'o'所在的位置,即7。

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

下面是一个示例,演示如何使用lastIndexOf方法查找某个字符串在字符串中最后一次出现的位置。

String str = "hello world";
int position = str.lastIndexOf("l");
System.out.println(position); // 输出9

在上面的代码中,我们查找字符串"hello world"中最后一次出现子字符串"l"的位置,由于子字符串"l"在字符串中出现了两次,所以lastIndexOf方法返回第二个"l"所在的位置,即9。

3. 查找某个字符串最后一次出现的位置时指定起始位置

lastIndexOf方法还支持传入第二个参数,用于指定起始位置。

String str = "hello world";
int position = str.lastIndexOf("l", 8);
System.out.println(position); // 输出3

在上面的例子中,我们从字符串"hello world"的第8个位置开始向前查找子字符串"l"最后一次出现的位置,结果得到位置3。

三、lastIndexOf方法的使用技巧

1. 使用lastIndexOf查找文件名后缀

下面是一个示例,演示如何使用lastIndexOf方法查找文件名后缀。

String fileName = "example.txt";
int dotPosition = fileName.lastIndexOf(".");
if (dotPosition != -1) {
    String extension = fileName.substring(dotPosition + 1);
    System.out.println("File extension: " + extension);
} else {
    System.out.println("No file extension found.");
}

在上面的代码中,我们首先使用lastIndexOf方法查找文件名中最后一个点号的位置,如果找到了,就从该位置后面截取子字符串,得到文件名后缀。如果没有找到点号,说明文件名没有后缀。

2. 使用lastIndexOf在字符串中查找多个关键字

下面是一个示例,演示如何使用lastIndexOf方法在字符串中查找多个关键字。

String str = "Find all occurrences of keywords in this text.";
String[] keywords = {"all", "in", "text"};
for (String keyword : keywords) {
    int position = str.lastIndexOf(keyword);
    if (position != -1) {
        System.out.println("Found \"" + keyword + "\" at index: " + position);
    } else {
        System.out.println("Keyword \"" + keyword + "\" not found.");
    }
}

在上面的代码中,我们使用for循环遍历一个关键字数组,对于每个关键字,使用lastIndexOf方法在字符串中查找其最后一次出现的位置,如果找到了,输出该位置;如果没有找到,输出提示信息。

四、总结

本文介绍了Java中lastIndexOf方法的用法及应用技巧。我们学习了如何使用lastIndexOf方法查找某个字符或子字符串在字符串中最后一次出现的位置,以及如何指定起始位置进行查找。最后,我们还介绍了两个常见的使用技巧:使用lastIndexOf方法查找文件名后缀,以及使用lastIndexOf方法在字符串中查找多个关键字。