Java.lang.String.lastIndexOf() 方法
描述
java.lang.String.lastIndexOf(String str) 方法返回此字符串中最右边出现的指定子字符串的索引。 最右边的空字符串""被认为出现在索引值 this.length() 处。
返回的索引是最大值 k 使得 this.startsWith(str, k) 为真。
声明
以下是 java.lang.String.lastIndexOf() 方法的声明。
public int lastIndexOf(String str)
参数
str − 这是要搜索的子字符串。
返回值
如果字符串参数在此对象中作为子字符串出现一次或多次,则返回最后一个此类子字符串的第一个字符的索引。 如果它不作为子字符串出现,则返回 -1。
异常
NA
示例
下面的例子展示了 java.lang.String.lastIndexOf() 方法的使用。
package com.tutorialspoint; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str1 = "Collections of tutorials at tutorials point"; // returns index of first character of the last substring "tutorials" System.out.println("index = " + str1.lastIndexOf("tutorials")); // returns -1 as substring "admin" is not located System.out.println("index = " + str1.lastIndexOf("admin")); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
index = 28 index = -1