- Home /
web page html parsing
hi i need to parse a content of a html page from the internet and display it to the console. So it needs to look for tags. Can any1 point me to the right direction? i have looked in to WWW class it is not powerful enough to do what i want
Answer by Maarten · Mar 29, 2011 at 04:00 PM
What is it exactly that you want? You can use the WWW class to download the HTML as a string, and then build a stack based parser to parse your HTML.
The other solution is just to use C# its XML Parser, altough you have to make the HTML parsable by a XML parser. You can use the following library for this: http://htmlagilitypack.codeplex.com/
Your answer
Follow this Question
Related Questions
Handle HTML response 0 Answers
Using JSON to get tree data into JavaScript objects 3 Answers
Loading xml data from www.text 2 Answers
Run website's scripts. 0 Answers
Sending variables to HTML 1 Answer