程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> string-字符串中出現的子串的問題

string-字符串中出現的子串的問題

編輯:編程綜合問答
字符串中出現的子串的問題

為什麼下面的算法不能停止?str 是搜索的字符串, findStr 是我要找的字符串。

String str = "helloslkhellodjladfjhello";
    String findStr = "hello";
    int lastIndex = 0;
    int count =0;

    while(lastIndex != -1){

           lastIndex = str.indexOf(findStr,lastIndex);

           if( lastIndex != -1){
                 count ++;
          }
        lastIndex+=findStr.length();
    }
    System.out.println(count);

最佳回答:


lastIndex = str.indexOf(findStr,lastIndex);

返回 findStr 子字符串在 str 字符串中第一次出現處的 索引 ,從指定的 lastIndex 索引開始。因為lastIndex=0;所以第一次查找得到的索引還是0。
應該把下面的 lastIndex+=findStr.length();放到while循環中;這樣不會死循環了。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved