Java lastIndexOf() 方法


Java lastIndexOf() 方法

lastIndexOf() 方法有以下四种形式:

  • public int lastIndexOf(int ch): 返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。

  • public int lastIndexOf(int ch, int fromIndex): 返返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。

  • public int lastIndexOf(String str): 返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。

  • public int lastIndexOf(String str, int fromIndex): 返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。

语法

public int lastIndexOf(int ch)



public int lastIndexOf(int ch, int fromIndex)



public int lastIndexOf(String str)



public int lastIndexOf(String str, int fromIndex)

参数

  • ch -- 字符。

  • fromIndex -- 开始搜索的索引位置。

  • str -- 要搜索的子字符串。

返回值

指定子字符串在字符串中第一次出现处的索引值。

实例

public class Test {
    public static void main(String args[]) {
        String Str = new String("编程字典:www.CodingDict.com");
        String SubStr1 = new String("CodingDict");
        String SubStr2 = new String("com");

        System.out.print("查找字符 i 最后出现的位置 :" );
        System.out.println(Str.lastIndexOf( 'i' ));
        System.out.print("从第11个位置查找字符 i 最后出现的位置 :" );
        System.out.println(Str.lastIndexOf( 'i', 11 ));
        System.out.print("子字符串 SubStr1 最后出现的位置:" );
        System.out.println( Str.lastIndexOf( SubStr1 ));
        System.out.print("从第十五个位置开始搜索子字符串 SubStr1最后出现的位置 :" );
        System.out.println( Str.lastIndexOf( SubStr1, 15 ));
        System.out.print("子字符串 SubStr2 最后出现的位置 :" );
        System.out.println(Str.lastIndexOf( SubStr2 ));
    }
}

以上程序执行结果为:

查找字符 i 最后出现的位置 :16
从第11个位置查找字符 i 最后出现的位置 :-1
子字符串 SubStr1 最后出现的位置:9
从第十五个位置开始搜索子字符串 SubStr1最后出现的位置 :9
子字符串 SubStr2 最后出现的位置 :20