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

字符串搜索-Java實例

如何在字符串中搜索一個單詞?

解決方法

這個例子顯示如何利用indexOf()方法在一個String對象中搜索一個詞,如果找到那麼返回字符串中一個字的位置索引。否則返回-1。 

public class SearchStringEmp{
   public static void main(String[] args) {
      String strOrig = "Hello readers";
      int intIndex = strOrig.indexOf("Hello");
      if(intIndex == - 1){
         System.out.println("Hello not found");
      }else{
         System.out.println("Found Hello at index "
         + intIndex);
      }
   }
}

結果

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

Found Hello at index 0