java.lang.String.lastIndexOf(int ch)方法实例
java.lang.String.lastIndexOf(int ch) 方法返回该字符串指定字符最后一次出现处的索引。
声明
以下是java.lang.String.lastIndexOf()方法的声明
public int lastIndexOf(int ch)
参数
-
ch -- 这是字符的值(Unicode代码点)。
返回值
此方法返回字符在该对象表示的字符序列的最后一个匹配项的索引,或者-1,如果该字符没有找到。
异常
-
NA
例子
下面的例子显示java.lang.String.lastIndexOf()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str = "This is yiibai"; // returns the index of last occurrence of character i System.out.println("last index of letter 'i' = " + str.lastIndexOf('i')); // returns -1 as character e is not in the string System.out.println("last index of letter 'e' = " + str.lastIndexOf('e')); } }
让我们来编译和运行上面的程序,这将产生以下结果:
last index of letter 'i' = 19 last index of letter 'e' = -1