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


Java StringBuffer lastIndexOf()用法及代碼示例


在StringBuffer類中,根據傳遞給它的參數,有兩種類型的lastIndexOf()方法。

lastIndexOf(String str)

StringBuffer類的lastIndexOf(String str)方法是一種內置方法,用於返回String中最後一次出現的通過子字符串作為參數的索引。空字符串“”的最後一次出現被視為發生在索引值this.length()處。如果子字符串str不存在,則返回-1。

用法:


public int lastIndexOf(String str)

參數:此方法僅接受一個參數str,它是String類型的值,它指向我們要獲取的最後一次出現的索引的String。

返回值:此方法返回最後一次傳遞的子字符串的索引;如果不存在此子字符串,則返回-1。

以下程序說明了java.lang.StringBuffer.lastIndexOf()方法:

示例1:當傳遞的子字符串出現在序列中時。

// Java program to demonstrate 
// the lastIndexOf() Method. 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a StringBuffer object 
        // with a String pass as parameter 
        StringBuffer str 
            = new StringBuffer("GeeksForGeeks"); 
  
        // print string 
        System.out.println("String contains = " + str); 
  
        // get index of string For 
        int index = str.lastIndexOf("Geeks"); 
  
        // print results 
        System.out.println("Index of last occurrence"
                           + " string \"Geeks\"= "
                           + index); 
    } 
}
輸出:
String contains = GeeksForGeeks
Index of last occurrence string "Geeks"= 8

示例2:當傳遞的子字符串不存在於序列中時。

// Java program to demonstrate 
// the lastIndexOf() Method. 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a StringBuffer object 
        // with a String pass as parameter 
        StringBuffer str 
            = new StringBuffer( 
                "Geeks for Geeks contribute"); 
  
        // print string 
        System.out.println("String contains = " + str); 
  
        // get index of string article 
        int index = str.lastIndexOf("article"); 
  
        // print results 
        System.out.println("Index of string"
                           + " 'article' = "
                           + index); 
    } 
}
輸出:
String contains = Geeks for Geeks contribute
Index of string 'article' = -1

lastIndexOf(String str, int fromIndex)

StringBuffer類的lastIndexOf(String str,int fromIndex)方法是一種內置方法,用於在首次出現傳遞的子字符串作為參數時返回String中的索引,並從指定的索引“ fromIndex”開始向後搜索。如果子字符串str不存在,則返回-1。 fromIndex是整數類型值,是指從其開始搜索的索引,但是此搜索從索引“ fromIndex”開始向後。此方法返回的索引是從序列的開頭算起的,唯一的不同是,此方法給出了搜索開始的索引。如果字符串出現在搜索開始的索引之後,但不早於索引,則返回-1。

用法:

public int lastIndexOf(String str, int fromIndex)

參數:此方法接受兩個一個參數:


  • str這是String類型的值,是指要獲取其索引的String
  • fromIndex這是整數類型值,是指從其開始向後搜索的索引。

返回值:此方法返回從指定索引處開始的最後一次傳遞的子字符串的索引;如果不存在此子字符串,則返回-1。

以下示例程序旨在說明StringBuffer.lastIndexOf()方法:

示例1:當序列中存在傳遞的子字符串時。

// Java program to demonstrate 
// the lastIndexOf() Method. 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a StringBuffer object 
        // with a String pass as parameter 
        StringBuffer str 
            = new StringBuffer("GeeksForGeeks"); 
  
        // print string 
        System.out.println("String contains = " + str); 
  
        // get index of string Form index 3 
        int index = str.lastIndexOf("For", 8); 
  
        // print results 
        System.out.println("index of last occurrence"
                           + " string \"For\" = "
                           + index); 
    } 
}
輸出:
String contains = GeeksForGeeks
index of last occurrence string "For" = 5

示例2:當fromIndex是

// Java program to demonstrate 
// the lastIndexOf() Method. 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a StringBuffer object 
        // with a String pass as parameter 
        StringBuffer str 
            = new StringBuffer("Geeks for Geeks contribute"); 
  
        // print string 
        System.out.println("String contains = " + str); 
  
        // get index of string Geeks from index 15 
        int index = str.lastIndexOf("contribute", 10); 
  
        // print results 
        System.out.println("index of string"
                           + " 'contribute ' = "
                           + index); 
    } 
}
輸出:
String contains = Geeks for Geeks contribute
index of string 'contribute ' = -1

參考文獻



相關用法


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