當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java StringBuilder lastlastIndexOf()用法及代碼示例


用法:

    public int lastIndexOf (String s);
    public int lastIndexOf (String s, int st_idx);

StringBuilder類lastIndexOf()方法

  • lastIndexOf() 方法在 java.lang 包中可用。
  • lastIndexOf (String s) 方法用於從最右側搜索給定字符串出現的此字符串中的索引。
  • lastIndexOf (String s, int st_idx) 方法用於從最右側搜索此字符串中給定子字符串出現的索引,搜索將從 st_idx 開始。
  • 這些方法可能會在返回出現字符串的最後一個索引時拋出異常。
    NullPointerException - 當給定的字符串參數為空時,可能會拋出此異常。
  • 這些是非靜態方法,隻能通過類對象訪問,如果我們嘗試使用類名訪問這些方法,則會出現錯誤。

參數:

  • 在第一種情況下,String s- 表示要搜索的子字符串。
  • 在第二種情況下,String s, int st_idx
    • String s- 與第一種情況中的定義類似。
    • int st_idx- 表示開始搜索的索引。

返回值:

這個方法的返回類型是int,它返回給定子字符串最後一次出現在此對象中的索引。

例:

// Java program to demonstrate the example 
// of lastIndexOf () method of StringBuilder class

public class LastIndexOf {
    public static void main(String[] args) {
        // Creating an StringBuilder object
        StringBuilder st_b = new StringBuilder("Java World ");

        // Display st_b 
        System.out.println("st_b = " + st_b);

        // By using lastIndexOf("a") method is to return the last index of 
        // given string "a" in st_b object 
        // (first a at index 1 and second a at index 3)
        // it returns 3
        int index1 = st_b.lastIndexOf("a");

        // Display st_b index
        System.out.println("st_b.lastIndexOf(String) = " + index1);

        // By using lastIndexOf("a",1) method is to return the last index of 
        // given string "a" in st_b object 
        // (first a at index 1 and second a at index 3)
        // it returns 3 and searching starts at index 1
        int index2 = st_b.lastIndexOf("a", 1);

        // Display st_b index
        System.out.println("st_b.lastIndexOf(String, int) = " + index2);
    }
}

輸出

st_b = Java World 
st_b.lastIndexOf(String) = 3
st_b.lastIndexOf(String, int) = 1


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java StringBuilder lastlastIndexOf() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。