Java lastIndexOf方法详解

Java lastIndexOf方法详解

Java lastIndexOf方法详解

一、概述

在Java编程中,我们经常会遇到需要查找某个字符或字符串在另一个字符串中最后出现的位置的情况。Java提供了lastIndexOf方法来实现这一功能。本文将详细介绍lastIndexOf方法的用法、参数含义和示例。

二、语法

public int lastIndexOf(String str)

三、参数

  • str:要查找的字符串

四、返回值

该方法返回指定字符串在原字符串中最后出现的位置。如果未找到指定字符串,则返回-1。

五、示例

下面我们通过几个示例来演示Java lastIndexOf方法的使用。

示例一:查找字符在字符串中最后出现的位置

public class Main {
    public static void main(String[] args) {
        String str = "hello world";
        char ch = 'o';

        int lastIndex = str.lastIndexOf(ch);

        if(lastIndex == -1){
            System.out.println("未找到字符" + ch);
        } else {
            System.out.println("字符" + ch + "最后出现的位置为:" + lastIndex);
        }
    }
}

运行结果:

字符o最后出现的位置为:7

示例二:查找子字符串在字符串中最后出现的位置

public class Main {
    public static void main(String[] args) {
        String str = "hello world";
        String subStr = "wor";

        int lastIndex = str.lastIndexOf(subStr);

        if(lastIndex == -1){
            System.out.println("未找到子字符串" + subStr);
        } else {
            System.out.println("子字符串" + subStr + "最后出现的位置为:" + lastIndex);
        }
    }
}

运行结果:

子字符串wor最后出现的位置为:6

示例三:查找字符串在指定位置前最后出现的位置

public class Main {
    public static void main(String[] args) {
        String str = "hello world hello";
        String subStr = "hello";

        int lastIndex = str.lastIndexOf(subStr, 10);

        if(lastIndex == -1){
            System.out.println("未找到子字符串" + subStr);
        } else {
            System.out.println("子字符串" + subStr + "在指定位置前最后出现的位置为:" + lastIndex);
        }
    }
}

运行结果:

子字符串hello在指定位置前最后出现的位置为:0

六、注意事项

  • lastIndexOf方法返回的是字符或子字符串在原字符串中最后出现的位置,索引从0开始。
  • lastIndexOf方法还可以接受一个参数,表示从指定位置开始向前查找字符串在原字符串中最后出现的位置。

通过本文对Java lastIndexOf方法的介绍,相信读者已经掌握了该方法的基本用法和注意事项。在实际开发中,根据具体需求合理运用lastIndexOf方法,可以更高效地实现字符串处理操作。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程