Categories: Java Api

Java lastIndexOf(int ch) 方法

返回到:Java 介绍String类

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("W3Cschool教程:www.w3cschool.cn");
  String SubStr1 = new String("youj");
  String SubStr2 = new String("com");

  System.out.print("查找字符 o 最后出现的位置 :" );
  System.out.println(Str.lastIndexOf( 'o' ));
  System.out.print("从第14个位置查找字符 o 最后出现的位置 :" );
  System.out.println(Str.lastIndexOf( 'o', 14 ));
  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 ));
 }
}

以上程序执行结果为:

查找字符 o 最后出现的位置 :17
从第14个位置查找字符 o 最后出现的位置 :13
子字符串 SubStr1 最后出现的位置:9
从第十五个位置开始搜索子字符串 SubStr1最后出现的位置 :9
子字符串 SubStr2 最后出现的位置 :16

返回到:Java 介绍String类

terry

这个人很懒,什么都没有留下~

Share
Published by
terry

Recent Posts

自定义指令:聊聊vue中的自定义指令应用法则

今天我们来聊聊vue中的自定义…

3 天 ago

聊聊Vue中@click.stop和@click.prevent

一起来学下聊聊Vue中@cli…

1 周 ago

Nginx 基本操作:启动、停止、重启命令。

我们来学习Nginx基础操作:…

2 周 ago

Vue3:手动清理keep-alive组件缓存的方法

Vue3中手动清理keep-a…

2 周 ago

聊聊React和Vue组件更新的实现及区别

React 和 Vue 都是当…

3 周 ago