Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering how I would write a method to count the number of words in a java string only by using string methods like charAt, length, or substring.

Loops and if statements are okay!

I really appreciate any help I can get! Thanks!

share|improve this question
Is this homework? – Trufa May 3 '11 at 1:29
No, just some extra string practice! Thanks mate! – Philip McQuitty May 3 '11 at 1:41
@user667926: well, good luck then! – Trufa May 3 '11 at 1:48
how can it be practice to look for a complete answer, not giving any starter you already tried and were stuck? – kleopatra May 3 '11 at 8:26

7 Answers

up vote 1 down vote accepted
public static int countWords(String s){

    int counter = 0;

    boolean word = false;
    int endOfLine = s.length() - 1;

    for (int i = 0; i < s.length(); i++) {
        // if the char is letter, word = true.
        if (Character.isLetter(s.charAt(i)) == true && i != endOfLine) {
            word = true;
            // if char isnt letter and there have been letters before (word
            // == true), counter goes up.
        } else if (Character.isLetter(s.charAt(i)) == false && word == true) {
            counter++;
            word = false;
            // last word of String, if it doesnt end with nonLetter it
            // wouldnt count without this.
        } else if (Character.isLetter(s.charAt(i)) && i == endOfLine) {
            counter++;
        }
    }
    return counter;
}
share|improve this answer

I think something like this would work even with multiple spaces and leading trailing spaces and blank lines:

int CountWords (String in) {
   String trim = in.trim();
   if (trim.isEmpty()) return 0;
   return trim.split("\\s+").length; //separate string around spaces
}

Hope that helps. More info about split here.

share|improve this answer
Small correction. The last line should be return words.length; – Leigh Jun 26 '12 at 22:27
 private static int countWordsInSentence(String input) {
    int wordCount = 0;

    if (input.trim().equals("")) {
        return wordCount;
    }
    else {
        wordCount = 1;
    }

    for (int i = 0; i < input.length(); i++) {
        char ch = input.charAt(i);
        String str = new String("" + ch);
        if (i+1 != input.length() && str.equals(" ") && !(""+ input.charAt(i+1)).equals(" ")) {
            wordCount++;
        }
    }

    return wordCount;
 }
share|improve this answer

Use

myString.split("\s+");

This will work.

share|improve this answer

Algo in O(N)

 count : 0;

 if(str[0] == validChar ) :
      count++;
 else :
      for i = 1 ; i < sizeOf(str) ; i++ :

          if(str[i] == validChar AND str[i-1] != validChar)

             count++;

          end if;

      end for;

 end if;

 return count;
share|improve this answer
public static int countWords(String str){
        if(str == null || str.isEmpty())
            return 0;

        int count = 0;
        for(int e = 0; e < str.length(); e++){
            if(str.charAt(e) != ' '){
                count++;
                while(str.charAt(e) != ' ' && e < str.length()-1){
                    e++;
                }
            }
        }
        return count;
    }
share|improve this answer

public class TestStringCount {

public static void main(String[] args) {
    int count=0;
    boolean word= false;
    String str = "how ma ny wo rds are th ere in th is sente nce";
    char[] ch = str.toCharArray();
    for(int i =0;i<ch.length;i++){
        if(!(ch[i]==' ')){
            for(int j=i;j<ch.length;j++,i++){
                if(!(ch[j]==' ')){
                    word= true;
                    if(j==ch.length-1){
                        count++;
                    }
                    continue;
                }
                else{
                    if(word){
                        count++;
                    }
                    word = false;
                }
            }
        }
        else{
            continue;
        }
    }
    System.out.println("there are "+(count)+" words");      
}

}

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.