位置:首頁 > Java技術 > java實例教學 > 字符串搜索最後出現位置-Java實例

字符串搜索最後出現位置-Java實例

如何搜索一個子字符串的最後一個位置?

解決方法

這個例子顯示了使用strOrig.lastIndexOf(Stringname) 方法如何確定一個字符串裡麵的子字符串的最後一個位置。

public class SearchlastString {
   public static void main(String[] args) {
      String strOrig = "Hello world ,Hello Reader";
      int lastIndex = strOrig.lastIndexOf("Hello");
      if(lastIndex == - 1){
         System.out.println("Hello not found");
      }else{
         System.out.println("Last occurrence of Hello
         is at index "+ lastIndex);
      }
   }
}

結果

上麵的代碼示例將產生以下結果。

Last occurrence of Hello is at index 13