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

I am trying to find out if a phrase entered by the user has at least 2 words in it. If it does not, keep asking them to enter a phrase until they enter one with at least 2 words.

Here is my code so far: It can successfully detect if they have entered 2 words, and it successfully detects if they don't enter 2 words the FIRST time, but if they enter below 2 words again the second time the program quit.

private static void stringfunctions() {
    String phrase;
    int count = 0;
    Scanner input = new Scanner(System.in);

    while (count < 2) {
        System.out.println("Please enter a multiple word phrase: ");
        phrase = input.nextLine();
        String[] arrPhrase = phrase.split(" ");
        for (int i = 0; i < arrPhrase.length; i++) {
            if (arrPhrase[i].equals(" ")) {
            } else {
                count++;
            }
        }

    }
share|improve this question
Should this be tagged as homework? – Marvo Oct 24 '11 at 19:49
Sounds like homework, so here's a hint: make the logic to find out if there's at least two words in the input into a separate method. It'll make it easier to use it. Also, keep in mind that this might give false positives for multiple spaces in sequence, as well as ignoring stuff like tab characters. You might want to look into regular expressions, play around with them and see if you can come up with a regexp that detects your criterium. – G_H Oct 24 '11 at 19:53
You're going to want to look up regex, to be able to split on more than one whitespace character. At that point, you shouldn't need to do a count, you should just be able to detect the number of words from the size of the array (you should use a boolean variable to control the loop - inputTwoWords or something). Also - try thinking about why users only have to input 1 word in the second time they input something, if that's causing the program to quit. – Clockwork-Muse Oct 24 '11 at 19:53

2 Answers

up vote 2 down vote accepted

Since this is homework, I'm not going to give you the answer, but watch closely the value of count as you travel through the loop.

share|improve this answer
Thanks, I wasn't expecting a direct answer – MJ93 Oct 24 '11 at 20:53

reset count after testing. the problem is the while loop terminates as soon as count passes 2

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.