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

I would like to know, that if I am having a single line string, then how to count the frequency of a particular word in that string, using simple java code?!

Thanks in advance..


What I am looking for is a sample logical code in java which is used to search a particular word in a sentence. I am building one spam filter, which needs to read the line and then classify it.

share|improve this question

6 Answers

StringUtils from commons-lang has:

StringUtils.countMatches(string, searchedFor);
share|improve this answer
1  
I guess this counts as simple enough java code :) – Tom Nov 16 '10 at 23:27

First split by spaces (see String#split)

Then use a map to map the words with frequency.

String [] words = line.split(" ");

Map<String,Integer> frequency = new Map <String,Integer>();

for (String word:words){

    Integer f = frequency.get(word);
    frequency.put(word,f+1);
}

Then you can find out for a particular word with:

frequency.get(word)
share|improve this answer

You can use regular expression. An example of code is:

public int count(String word, String line){
    Pattern pattern = Pattern.compile(word);
    Matcher matcher = pattern.matcher(line);
    int counter = 0;
    while (matcher.find())
        counter++;
    return counter;
}
share|improve this answer

Using Guava library:

  1. MultiSet(Use when count of all words are required)

    String line="Hello world bye bye world";
    Multiset<String> countStr=HashMultiset.create(Splitter.on(' ').split(line)); 
    System.out.println(countStr.count("Hello")); //gives count of the word 'Hello'
    
  2. Iterators(Use when count of only few words are required)

    String line="Hello world bye bye world";
    Iterable<String> splitStr=Splitter.on(' ').split(line);
    System.out.println(Iterables.frequency(splitStr, "Hello"));
    
share|improve this answer

After Googleing and little study i got this stuff __ may be helpfull

String str="hello new demo hello";
Map<String,Integer> hmap= new HashMap<String,Integer>();
for(String tempStr : str.split(" "))
{
  if(hmap.containsKey(tempStr))
  {
     Integer i=hmap.get(tempStr);
     i+=1;
     hmap.put(tempStr,i);
  }
  else
     hmap.put(tempStr,1);
}
System.out.println(hmap);
share|improve this answer

Several ways:

  1. Use splits
  2. Use tokenizers
  3. Use Regular Expressions
  4. Use good old loops and string manipulation (ie indexOf(), etc)

Option 1 & 2 has the overhead of trying to figure out if your word happens to be the last on the line (and needing to add an additional count)

Option 3 requires you to be able to form regex syntax

Option 4 is archaic

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.