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。

语法

  1. public int lastIndexOf(int ch)
  2. public int lastIndexOf(int ch, int fromIndex)
  3. public int lastIndexOf(String str)
  4. public int lastIndexOf(String str, int fromIndex)

参数

  • ch — 字符。

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

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

返回值

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

实例

  1. public class Test {
  2. public static void main(String args[]) {
  3. String Str = new String("google网址:www.google.com");
  4. String SubStr1 = new String("google");
  5. String SubStr2 = new String("com");
  6. System.out.print("查找字符 o 最后出现的位置 :" );
  7. System.out.println(Str.lastIndexOf( 'o' ));
  8. System.out.print("从第14个位置查找字符 o 最后出现的位置 :" );
  9. System.out.println(Str.lastIndexOf( 'o', 14 ));
  10. System.out.print("子字符串 SubStr1 最后出现的位置:" );
  11. System.out.println( Str.lastIndexOf( SubStr1 ));
  12. System.out.print("从第十五个位置开始搜索子字符串 SubStr1最后出现的位置 :" );
  13. System.out.println( Str.lastIndexOf( SubStr1, 15 ));
  14. System.out.print("子字符串 SubStr2 最后出现的位置 :" );
  15. System.out.println(Str.lastIndexOf( SubStr2 ));
  16. }
  17. }

以上程序执行结果为:

  1. 查找字符 o 最后出现的位置 :21
  2. 从第14个位置查找字符 o 最后出现的位置 :14
  3. 子字符串 SubStr1 最后出现的位置:13
  4. 从第十五个位置开始搜索子字符串 SubStr1最后出现的位置 :13
  5. 子字符串 SubStr2 最后出现的位置 :20