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