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

May I want to know that how can we count Jargon text link which is a user unfamiliar word (eg, UNHCR,USR , etc.) in web page . And also want to know how to check and count the abbreviation words (undefined acronyms) in web page. I would like to count jargon and abbreviation words in html web pageusing automated tool . Thank you.

share|improve this question
Get a list of all abbreviations from abbreviations.com and loop through your HTML page and check for each word. – sorcerer Mar 25 '11 at 19:37
You're asking for a complete solution. That's not going to go over very well. Perhaps you could think of some more specific questions after you've made a try at a solution and gotten stuck at some point. – tvanfosson Mar 25 '11 at 19:39

1 Answer

You can use the java SAXParser API (XML parser)to parse the Html web page. Parse thru the page using SAXParser and for each node that you want to check, parse using Java string parser (which should be quite simple enough). For example you want to want to count the number of links in a page you can find all the nodes in Html page using XML parser and then check the text value of these nodes for jargon or abbreviation words.

Hope this helps.

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.