4
votes
4answers
271 views
Parsing HTML page with HtmlAgilityPack
Using C# I would like to know how to get the Textbox value (i.e: john) from this sample html script :
<TD class=texte width="50%">
<DIV align=right>Name :<B> …
2
votes
1answer
2k views
HTML Agility pack - parsing tables
Hello,
I want to use the HTML agility pack to parse tables from complex web pages, but I am somehow lost in the object model.
I looked at the link example, but did not find any table data this way.
…
1
vote
1answer
29 views
Html Agility Pack ends-with does not work
Hi everyone!
I tried to use ends-with in Html Agility Pack in the following mode: //span[ends-with(@id, 'Label2')] and //span[ends-with(., 'test')] , but it does not work.
All other functions, like …
1
vote
1answer
181 views
HTMLAgilityPack parse in the InnerHTML
<div>
<b>Token1</b>
Token2
<b>Token3</b>
</div>
I try to extract Token2 from the div
I manage to get Token1 and Token3 with :
HtmlNodeCollection headerFooter = …
1
vote
3answers
209 views
Question about Encodings: How can I output from HtmlAgilityPack to a StringWriter and keep the encoding?
I am reading html in with HtmlAgilityPack, editing it, then outputting it to a StreamWriter. The HtmlAgilityPack Encoding is Latin1, and the StreamWriter is UnicdeEncoding.
I am losing some …
1
vote
3answers
253 views
Html Agility Pack - Parsing <li>
I want to scrape a list of facts from simple website. Each one of the facts is enclosed in a <li> tag. How would I do this using Html Agility Pack? Is there a better approach?
The only things …
1
vote
3answers
115 views
Image tag not closing with HTMLAgilityPack
Using the HTMLAgilityPack to write out a new image node, it seems to remove the closing tag of an image, e.g. should be but when you check outer html, has .
string strIMG = "<img src='" + …
0
votes
1answer
35 views
html nested tables agility pack valid xpath
Assuming nested tables don't have unique attributes ( id , class or anything else ) to get the required one via
doc.DocumentNode.SelectSingleNode("//table[@width='500']")
Does XPath prohibit …
0
votes
2answers
56 views
HTML Agility Pack - Get Page Summary
How would I use the HTML Agility Pack to get the First Paragraph of text from the body of an HTML file. I'm building a DIGG style link submission tool, and want to get the title and the first …
0
votes
4answers
132 views
Clean HTML using C#
How do I repair malformed HTML using C#? A great answer would be an HTML Agility Pack sample!
I'm scraping a site (for legitimate use). The site's HTML is OK but there are some annoying problems.
…
0
votes
0answers
34 views
HtmlAgilityPack for getiing required html
Am using C# application to feed the broken HTML into HtmlAgilityPack and get the first 200 words with proper closing of HTMl tags...anyone kindly help me with sample code for using HtmlAgilityPack to …
0
votes
2answers
33 views
how to select xml node using near element
Using XPath and the HTML Agility Pack, I need to select the destination text using color:#ff00ff.
My HTML looks like this:
<table>
<tr style="color:#ff00ff">
…
0
votes
1answer
21 views
Anything to output xhtml?
I've been using the HtmlAgilityPack to eat some XHTML documents, however, if I want to output my document as XHTML, it's not possible. Anyone have any other solutions other than the HtmlAgilityPack to …
0
votes
1answer
27 views
Innerhtml position
On an html-page I have from 0-4 divs with a specific class name.
What I want to do is get the html from the start to the first div, then from div1 position to div2 position, then div2 to div3, div3 …
0
votes
2answers
57 views
Htmlnode collection and parsing
Hi, I'm trying to extract the text contained in a webpage. So that I'm using a third pary tool Html Agility Pack. In that they mentioned
HtmlWeb htmlWeb = new HtmlWeb();
HtmlDocument doc = …
