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

Pls I want to keep a count of every word from a file, and this count should not include non letters like the apostrophe, comma, fullstop, question mark, exclamation mark, e.t.c. i.e just letters of the alphabet. I tried to use a delimiter like this, but it didn't include the apostrophe.

Scanner fileScanner = new Scanner("C:\\MyJavaFolder\\JavaAssignment1\\TestFile.txt");
    int totalWordCount = 0;

    //Firstly to count all the words in the file without the restricted characters 
    while (fileScanner.hasNext()) {
        fileScanner.useDelimiter(("[.,:;()?!\" \t\n\r]+")).next();
        totalWordCount++;
    }
    System.out.println("There are " + totalWordCount + " word(s)");

  //Then later I create an array to store each individual word in the file for counting their lengths.
    Scanner fileScanner2 = new Scanner("C:\\MyJavaFolder\\JavaAssignment1\\TestFile.txt");
    String[] words = new String[totalWordCount];
    for (int i = 0; i < totalWordCount; ++i) {
        words[i] = fileScanner2.useDelimiter(("[.,:;()?!\" \t\n\r]+")).next();
    }

This doesn't seem to work !

Please how can I go about this ?

share|improve this question
This question has been rephrased to 'HOW CAN I COUNT JUST THE LETTERS IN A WORD SEPARATED BY AN APOSTROPHE' e.g. 'It's' is a 3 letter word but using the delimiter, it turns that into 2 words of length 2 and length 1 respectively. So in other words, HOW DO I SKIP JUST THE APOSTROPHE WHEN COUNTING WORDS ? – kooldave98 Nov 10 '10 at 11:15

2 Answers

up vote 2 down vote accepted

Seems to me that you don't want to filter using anything but spaces and end lines. For example the word "they're" would return as two words if you're using a ' to filter your number of words. Here's how you could change your original code to make it work.

Scanner fileScanner = new Scanner(new File("C:\\MyJavaFolder\\JavaAssignment1\\TestFile.txt"));
    int totalWordCount = 0;
    ArrayList<String> words = new ArrayList<String>();

    //Firstly to count all the words in the file without the restricted characters 
    while (fileScanner.hasNext()) {
        //Add words to an array list so you only have to go through the scanner once
        words.add(fileScanner.next());//This defaults to whitespace
        totalWordCount++;
    }
    System.out.println("There are " + totalWordCount + " word(s)");
    fileScanner.close();

Using the Pattern.compile() turns your string into a regular expression. The '\s' character is predefined in the Pattern class to match all white space characters.

There is more information at Pattern Documentation

Also, make sure to close your Scanner classes when you're done. This could prevent your second scanner from opening.

Edit

If you want to count the letters per word you can add the following code to the above code

int totalLetters = 0;
int[] lettersPerWord = new int[words.size()];
for (int wordNum = 0; wordNum < words.size(); wordNum++)
{
 String word = words.get(wordNum);
 word = word.replaceAll("[.,:;()?!\" \t\n\r\']+", "");
 lettersPerWord[wordNum] = word.length();
 totalLetters = word.length();
}

I have tested this code and it appears to work for me. The replaceAll, according to the JavaDoc uses a regular expression to match so it should match any of those characters and essentially remove it.

share|improve this answer
Great stuff most especially with the arraylist...I didn't think of that, Now knowing that, I think my question should be rephrased to 'HOW CAN I COUNT JUST THE LETTERS IN A WORD SEPARATED BY AN APOSTROPHE' e.g. 'It's' is a 3 letter word but using the delimiter, it turns that into 2 words of length 2 and length 1 respectively. So in other words, HOW DO I SKIP JUST THE APOSTROPHE WHEN COUNTING WORDS ? – kooldave98 Nov 10 '10 at 11:09
I've edited the code so it should work for your problem. I've tested it and it seems to work for me. – thattolleyguy Nov 10 '10 at 15:28
Did this answer your question? – thattolleyguy Nov 16 '10 at 18:45

The Delimiter is not a regular expression, so with your example it is looking for things split between "[.,:;()?!\" \t\n\r]+"

You can either use regexp instead of the Delimiter

using the regexp class with the group method may be what your looking for.

String pattern = "(.*)[.,:;()?!\" \t\n\r]+(.*)";
Pattern r = Pattern.compile(pattern);
Matcher m = r.matcher(test);
    if (m.find( )) {
        System.out.println("Found value: " + m.group(1) );
    }

Play with those classes and you will see it is much more similar to what you need

share|improve this answer
oh, I didn't know that the delimiter was just to look for stuff split between stuff. Now knowing that, I think my question should be rephrased to 'HOW CAN I COUNT JUST THE LETTERS IN A WORD SEPARATED BY AN APOSTROPHE' e.g. 'It's' is a 3 letter word but using the delimiter, it turns that into 2 words of length 2 and length 1 respectively. So in other words, HOW DO I SKIP JUST THE APOSTROPHE WHEN COUNTING WORDS ? – kooldave98 Nov 10 '10 at 11:00

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.