java.lang.String.lastIndexOf(String str, int fromIndex)方法实例
java.lang.String.lastIndexOf(String str, int fromIndex) 方法返回此字符串指定的子字符串的最后出现处的索引,向后搜索从指定的索引处。返回整数是最大的k值:
k >= Math.min(fromIndex, this.length()) && this.startsWith(str, k), 如果没有存在k这样的值,则返回-1。
声明
以下是java.lang.String.lastIndexOf()方法的声明
public int lastIndexOf(String str, int fromIndex)
参数
-
str -- 这是要搜索的字符串。
-
fromIndex -- 这是搜索开始索引。
返回值
此方法返回该字符串指定的子字符串的最后出现处的索引。
异常
-
NA
例子
下面的例子显示java.lang.String.lastIndexOf()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str1 = "Collections of tutorials at tutorials point"; /* search starts from index 17 and if located it returns the index of the first character of the last substring "tutorials" */ System.out.println("index = " + str1.lastIndexOf("tutorials", 17)); /* search starts from index 9 and returns -1 as substring "admin" is not located */ System.out.println("index = " + str1.lastIndexOf("admin", 9)); } }
让我们来编译和运行上面的程序,这将产生以下结果:
index = 15 index = -1