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.
|
|
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.
|
|||
|
|
I'd recommend using an HTML Parser (such as |
|||
|
Simple in Java.
|
|||||||||||||
|
|
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 |
|||
|
|
|
Why write a zillion-line program when a command-line one-liner works perfectly well?
You can pretty much that same thing with many, many other pre-existing tools, even venerable old 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. |
|||
|
|
