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


Java Java.lang.StringBuilder.lastIndexOf()用法及代碼示例



描述

這個java.lang.StringBuilder.lastIndexOf(String str, int fromIndex) 方法返回此字符串中最後一次出現的指定子字符串的索引。fromIndex參數顯示開始搜索的索引。

聲明

以下是聲明java.lang.StringBuilder.lastIndexOf()方法

public int lastIndexOf(String str, int fromIndex)

參數

  • str- 這是要搜索的子字符串。

  • fromIndex- 這是開始搜索的索引。

返回值

此方法返回此序列中最後一次出現的指定子字符串的索引。

異常

NullPointerException- 如果 str 為空。

示例

下麵的例子展示了 java.lang.StringBuilder.lastIndexOf() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StringBuilderDemo {

   public static void main(String[] args) {
  
      StringBuilder str = new StringBuilder("tutorials point");
      System.out.println("string = " + str);

      /* returns the index within this string of the rightmost occurrence of the
         specified substring */
      System.out.println("last index of i = " + str.lastIndexOf("i"));
  
      // returns index as the substring is found with fromIndex 10
      System.out.print("last index of als = ");
      System.out.println(str.lastIndexOf("als",10));
    
      // returns -1 as fromIndex 2 can't find the substring 
      System.out.print("last index of ori = "); 
      System.out.println(str.lastIndexOf("ori",2));  
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

string = tutorials point
last index of i = 12
last index of als = 6
last index of ori = -1

相關用法


注:本文由純淨天空篩選整理自 Java.lang.StringBuilder.lastIndexOf() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。