位置:首頁 > Java技術 > java.lang > java.lang.String.lastIndexOf(int ch, int fromIndex)方法實例

java.lang.String.lastIndexOf(int ch, int fromIndex)方法實例

java.lang.String.lastIndexOf(int ch, int fromIndex) 方法返回此字符串指定字符的最後出現處的索引,向後搜索從指定的索引處。

聲明

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

public int lastIndexOf(int ch, int fromIndex)

參數

  • ch -- 這是字符的值(Unicode代碼點)。

  • fromIndex -- 這是索引搜索的開始。如果它大於或等於該字符串的長度,它具有相同的效果,好像它是等於一個小於該字符串的長度:這整個字符串可能被搜索。如果是負的,它具有相同的效果,如果它是-1:返回-1。

返回值

此方法返回字符對小於或等於fromIndex表示的字符序列的最後一個匹配項的索引,或-1,如果該字符不會在該點之前出現。

異常

  • NA

例子

下麵的例子顯示java.lang.String.lastIndexOf()方法的使用。

package com.yiibai;

import java.lang.*;

public class StringDemo {

  public static void main(String[] args) {
  
    String str = "This is yiibai";

    /* returns positive value(last occurrence of character t) as character
    is located, which searches character t backward till index 14 */
    System.out.println("last index of letter 't' =  "
    + str.lastIndexOf('t', 14)); 
      
    /* returns -1 as character is not located under the give index,
    which searches character s backward till index 2 */
    System.out.println("last index of letter 's' =  "
    + str.lastIndexOf('s', 2)); 
      
    // returns -1 as character e is not in the string
    System.out.println("last index of letter 'e' =  "
    + str.lastIndexOf('e', 5));
  }
}

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

last index of letter 't' = 10
last index of letter 's' = -1
last index of letter 'e' = -1