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

I have a situation where I need to find the number of occurrences of a word/phrase/wildcards in a HTML document. The best solution I thought would come out of regex. Any comments or ideas on how this can be done. If its regex can some one direct me on how I can get started on it using Java.

share|improve this question
1  
Regex ain't the best tool for parsing (x)HTML. Mozilla HTML Parser? – Nishant Feb 22 '11 at 14:53
2  
I don't think he really needs to parse in the normal sense, I think he just wants to count occurrences. For that, treating the HTML like a string would be fine and a regex will work well. I could be wrong though on what he needs. – josh.trow Feb 22 '11 at 14:55
Java isn’t the best tool for this. – tchrist Feb 22 '11 at 14:55
1  
@tchrist I need that document to be parsed on different platforms including solaris,and so since java is platform independent I have no other choicee – remo Feb 22 '11 at 15:01
1  
@tchrist- But all our code has already been in Java for more than 5 years, I cant rewrite every thing in other lang's now. Its a small part being implemented in our project. We do use perl but not for this application – remo Feb 22 '11 at 15:45
show 4 more comments

5 Answers

up vote 4 down vote accepted

This is a an example of how to count the number of matches of a regex. The example simply counts the occurrences of "foo" in the input string.

Pattern p = Pattern.compile("foo");
Matcher matcher = p.matcher("foo bar foo baz foo qux foo");
int count = 0;
while (matcher.find()) {
    count++;
}
System.out.println("Count: " + count); // count == 4
share|improve this answer
@haakon- Well I guess it would work. But Since I am considering HTML document, I would strip the HTML tags off before I do that. Still testing a few things – remo Feb 22 '11 at 15:52

I'd recommend using an HTML Parser (such as jsoup) instead of regex to do this.

share|improve this answer
is Jsoup platform independent? – remo Mar 4 '11 at 17:04
@sharma yes, it is just a jar file. – dogbane Mar 4 '11 at 17:12
thanks! – remo Mar 4 '11 at 22:38

Simple in Java.

Pattern pattern = Pattern.compile("myregex");

int count = 0;

// Read each line of the HTML document into the below variable

String line = ...

if(pattern.matcher(line).matches())
{
    count++;
}
share|improve this answer
Seems to be missing a loop. – Haakon Feb 22 '11 at 14:58
1  
@Haakon - What I have given is not exact code. It is pseudocode so that the asker can benefit from and write his logic rather than being spoonfed :) – adarshr Feb 22 '11 at 15:03
1  
matches is the wrong function; it doesn’t work right in Java. You need find. – tchrist Feb 22 '11 at 15:36
@tchirst - it is certainly not "wrong". It does match. But find enables you to count multiple occurrences on a single line too. Where as match just gives you one match per line. – adarshr Feb 22 '11 at 15:44

Since you specified regex I'm assuming you're just looking for key words. If you don't want to use jsoup as dogbane suggested you could always go with Calculating Word Frequencies with Regular Expressions

share|improve this answer

Why write a zillion-line program when a command-line one-liner works perfectly well?

% perl -nle 'while (/pat/g) { $count++ } END { print $count }' input files go here

You can pretty much that same thing with many, many other pre-existing tools, even venerable old awk. Why use assembly language when that job has already been done? Seems dangerously like NIH syndrome.

Perhaps you have other requirements that I’ve understood. The last time a senior Java person had a question, he asked me how to tell which lines in an input file had a tab on them. He had been going to write a Java program for this (BOGGLE!), but at the last minute thought there might be a better way.

There was.

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.