Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why is the following algorithm not halting for me? (str is the string I am searching in, findStr is the string I am trying to find)

    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);

Thanks!

EDIT- updated, still not working

share|improve this question

12 Answers

up vote 14 down vote accepted

The last line in was creating a problem... last endex would never be left at -1 so there would be an infinite loop... you can fix it by moving the code in the if block.

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);
share|improve this answer
4  
This reply is the exact copy of the post I made an hour before ;) – Olivier Apr 20 '09 at 14:16
Note that this might or might not return the result expected. With substring "aa" and string to search "aaa" the number of occurences expected may be one (returned by this code), but may be two as well (in this case you'll need "lastIndex++" instead of "lastIndex += findStr.length()") depending on what you are looking for. – Stanislav Kniazev Apr 23 '09 at 12:52
@olivier didnt see that... :( @stan thats absolutely correct... i was just fixing the code in the problem... guess it depends on what bobcom means by number of occurrences in the string... – codebreach Apr 24 '09 at 20:52
do{ ... } while(lastIndex != -1) would be a better fit, esp. when processing multiple lines. – yanchenko Jul 11 '09 at 15:03

do you really have to handle the matching yourself ? especially if all you need is the number of occurences, regular expressions are tidier :

    String str = "helloslkhellodjladfjhello";
    Pattern p = Pattern.compile("hello");
    Matcher m = p.matcher(str);
    int count = 0;
    while (m.find()){
    	count +=1;
    }
    System.out.println(count);
share|improve this answer

You "lastIndex += findStr.length();" was placed outside the brackets, causing an infinite loop (when no occurence was found, lastIndex was always to findStr.length().

Here is the fixed version :

        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);
share|improve this answer

How about using StringUtils.countMatches from Apache Commons Lang?

String str = "helloslkhellodjladfjhello";
String findStr = "hello";

System.out.println(StringUtils.countMatches(str, findStr));

That outputs:

3
share|improve this answer

A shorter version. ;)

String str = "helloslkhellodjladfjhello";
String findStr = "hello";
System.out.println(str.split(findStr, -1).length-1);
share|improve this answer
3  
return haystack.split(Pattern.quote(needle), -1).length - 1; if for instance needle=":)" – Mr_and_Mrs_D Dec 16 '12 at 16:01
You can even remove second argument of split() for a shorter one-liner – lOranger Dec 28 '12 at 11:46
@lOranger Without the ,-1 it will drop trailing matches. – Peter Lawrey Dec 28 '12 at 12:02
1  
Ouch, thanks, good to know! This will teach me to read the small lines in the javadoc... – lOranger Dec 28 '12 at 12:05
1  
Nice! But it includes only non-overlapping matches, no? E.g. matching "aa" in "aaa" will return 1, not 2? Of course including overlapping or non-overlapping matches are both valid and dependent on user requirements (perhaps a flag to indicate count overlaps, yes/no)? – Cornel Masson Apr 26 at 9:24
    String str = "helloslkhellodjladfjhello";
    String findStr = "hello";
    int lastIndex = 0;
    int count = 0;

    while ((lastIndex = str.indexOf(findStr, lastIndex)) != -1) {
        count++;
        lastIndex += findStr.length() - 1;
    }

    System.out.println(count);

at the end of the loop count is 3; hope it helps

share|improve this answer
Best example here. – marcolopes May 30 '11 at 18:44

Increment lastIndex whenever you look for next occurence. Otherwise it's always finding the first substring (at position 0).

share|improve this answer

public int indexOf(int ch, int fromIndex)

Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index.

So your lastindex value is always 0 and it always finds hello in the string.

share|improve this answer

try adding lastIndex+=findStr.length() to the end of your loop, otherwise you will end up in an endless loop because once you found the substring, you are trying to find it again and again from the same last position.

share|improve this answer
I did this and the function still does not work. – bobcom Apr 20 '09 at 10:59

Try this one. It replaces all the matches with a -.

String str = "helloslkhellodjladfjhello";
String findStr = "hello";
int numberOfMatches = 0;
while (str.contains(findStr)){
    str = str.replaceFirst(findStr, "-");
    numberOfMatches++;
}

And if you don't want to destroy your str you can create a new string with the same content:

String str = "helloslkhellodjladfjhello";
String strDestroy = str;
String findStr = "hello";
int numberOfMatches = 0;
while (strDestroy.contains(findStr)){
    strDestroy = strDestroy.replaceFirst(findStr, "-");
    numberOfMatches++;
}

After executing this block these will be your values:

str = "helloslkhellodjladfjhello"
strDestroy = "-slk-djladfj-"
findStr = "hello"
numberOfMatches = 3
share|improve this answer

Here is the advanced version for counting how many times the token occurred in a user entered string:

public class StringIndexOf {

/**
 * @param args
 */
public static void main(String[] args) {
    // TODO Auto-generated method stub

    Scanner scanner = new Scanner(System.in);

    System.out.println("Enter a sentence please: \n");
    String string = scanner.nextLine();

    int atIndex = 0;
    int count = 0;

    while (atIndex != -1)
    {
        atIndex = string.indexOf("hello", atIndex);

        if(atIndex != -1)
        {
            count++;
            atIndex += 5;
        }
    }

    System.out.println(count);
}

}

share|improve this answer

This below method show how many time substring repeat on ur whole string. Hope use full to you:-

    String search_pattern="aaa";
    String whole_pattern=""aaaaaababaaaaaa;
    int j = search_pattern.length();
    for (int i = 0; i < whole_pattern.length() - j + 1; i++) {

        String str1 = whole_pattern.substring(i, j + i);

        System.out.println("sub string loop " + i + " => " + str1);

        if (str1.equals(search_pattern)) {
            Constants.k++;
        }

    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.