Tagged Questions
HTML Agility Pack is an open-source HTML parser that builds a read/write DOM and supports plain XPATH or XSLT.
91
votes
3answers
40k views
How to use HTML Agility pack
How do I use the HTML Agility Pack?
My XHTML document is not completely valid. That's why I wanted to use it. How do I use it in my project? My project is in C#.
17
votes
2answers
15k views
HTML Agility pack - parsing tables
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.
Can I use ...
10
votes
3answers
933 views
Alternatives to HtmlAgilityPack? [closed]
I don't like some of the design decisions made in HtmlAgilityPack:
When using SelectNodes, if no nodes are found, it returns null rather than an empty set, so you can't just foreach over it without ...
9
votes
3answers
4k 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> ...
8
votes
3answers
4k views
HtmlAgilityPack selecting childNodes not as expected
I am attempting to use the HtmlAgilityPack library to parse some links in a page, but I am not seeing the results I would expect from the methods. In the following I have a HtmlNodeCollection of ...
6
votes
0answers
110 views
Parsing Author name out of a string [closed]
Ok I'm working on a little program to rip short stories out of a website (actually a couple of sites)
And then rewrite them as say .EPUB, so that i can read them on my ebook reader.
Now I'm using ...
6
votes
2answers
386 views
HtmlAgilityPack — Does <form> close itself for some reason?
I just wrote up this test to see if I was crazy...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using HtmlAgilityPack;
namespace HtmlAgilityPackFormBug
{
...
5
votes
2answers
405 views
How to remove duplicate attributes from XML with C#
I am parsing some XML files from a third party provider and unfortunately it's not always well-formed XML as sometimes some elements contain duplicate attributes.
I don't have control over the source ...
5
votes
2answers
799 views
Html Agility Pack - Problem selecting subnode
I want to export my Asics running plan to iCal and since Asics do not offer this service, I decided to build a little scraper for my own personal use. What I want to do is to take all the scheduled ...
5
votes
2answers
228 views
How to design my C# jQuery API such that it isn't confusing to use?
I'm making a jquery clone for C#. Right now I've got it set up so that every method is an extension method on IEnumerable<HtmlNode> so it works well with existing projects that are already using ...
5
votes
3answers
849 views
Html Agility Pack help
I'm trying to scrape some information from a website but can't find a solution that works for me. Every code I read on the Internet generates at least one error for me.
Even the example code at their ...
5
votes
1answer
1k views
Select only items in a specific DIV using HtmlAgilityPack
I'm trying to use the HtmlAgilityPack to pull all of the links from a page that are contained within a div declared as <div class='content'> However, when I use the code below I simply get ALL ...
5
votes
1answer
158 views
Is there an object in C# that allows for easy management of HTML DOM?
If I have a string that contains the html from a page I just got returned from an HTTP Post, how can I turn that into something that will let me easily traverse the DOM?
I figured HtmlDocument object ...
4
votes
2answers
25 views
xpath syntax meaning
I'm trying to understand a piece of code I should manage. I found some html manipulation in which HtmlAgilityPack is used for some node selection. Someone knows the meaning of this xpath selector?
...
4
votes
2answers
93 views
Parsing HTML with HtmlAgilityPack
This is the sample HTML I am trying to parse with Html Agility Pack in ASP.Net (C#).
<div class="content-div">
<dl>
<dt>
<b><a href="1.html" ...
4
votes
1answer
184 views
HtmlAgilityPack set node InnerText
I want to replace inner text of HTML tags with another text.
I am using HtmlAgilityPack
I use this code to extract all texts
HtmlDocument doc = new HtmlDocument();
doc.Load("some path")
foreach ...
4
votes
2answers
134 views
HTML Agility Parsing
I would like to parse an HTML table and disaply contents using XML to LINQ in an bound listbox.
I am using HTML Agility pack and using this code.
HtmlWeb web = new HtmlWeb();
...
4
votes
2answers
519 views
How to clean up poorly formed HTML using HTML Agility Pack
I am attempting to replace this god awful collection of regular expressions that is currently used to clean up blocks of poorly formed HTML and stumbled upon the HTML Agility Pack for C#. It looks ...
4
votes
6answers
250 views
Where's the bug in this tree traversal code?
There's a bug in Traverse() that's causing it to iterate nodes more than once.
Bugged Code
public IEnumerable<HtmlNode> Traverse()
{
foreach (var node in _context)
{
yield ...
4
votes
1answer
313 views
Using C#, how can I detect a broken link or tag?
I have a html file that it isn't syntactically correct, I'm parsing it with HTML Agility Pack (http://htmlagilitypack.codeplex.com).
But if I have a link like
<a ...
4
votes
1answer
861 views
Html Agility Pack: Find Comment Node
I am scraping a website that uses Javascript to dynamically populate the content of a website with the Html Agility pack.
Basically, I was searching for the XPATH "\\div[@class='PricingInfo']", but ...
4
votes
1answer
810 views
Set InnerText with Html Agility Pack
I've tried to set InnerText using the following, but I'm not allowed to set the InnerText property:
node.InnerText = node.InnerText.Remove(100) + "..";
The reason for this is that I only want to ...
4
votes
4answers
3k views
Stripping all html tags with Html Agility Pack
I have a html string like this:
<html><body><p>foo <a href='http://www.example.com'>bar</a> baz</p></body></html>
I wish to strip all html tags so ...
4
votes
2answers
2k views
Get Links in class with html agility pack
There are a bunch of tr's with the class alt. I want to get all the links (or the first of last) yet i cant figure out how with html agility pack.
I tried variants of a but i only get all the links ...
4
votes
3answers
2k views
Html Agility Pack: make code look neat
Can I use Html Agility Pack to make the output look nicely indented, unnecessary white space stripped?
4
votes
3answers
902 views
If Html File Has No Ending “/tr” Tag OR “/td” Tag Then HTML Agility Pack Does Not Read That Information Perfectly
I am using HTML Agility Pack to parse html content. I am using parsing to extract table information.
It works. But if there is no ending "/tr" tag or "/td" tag then it does not parse that information ...
4
votes
1answer
3k views
How to get all input elements in a form with HtmlAgilityPack
Example HTML:
<html><body>
<form id="form1">
<input name="foo1" value="bar1" />
<!-- Other elements -->
</form>
<form ...
4
votes
1answer
170 views
“html agility pack” like module for perl
Can anyone recommend a good module like "html agility pack"(.net) or "Beautiful Soup" for perl?
Thanks in advance!
4
votes
3answers
125 views
Order nodes by most images?
This might sound a bit complicated, but what I want to do is find all <a>s that contain <img>s such that the images that are in the same node with the greatest number of other images are ...
4
votes
2answers
2k views
HTML Agility Pack - Select nodes after specific node
I asked the question in a codeplex discussion but I hope to get a quicker answer here at stackoverflow.
So, I use HTML Agility Pack for HTML parsing in C#.
I have the following html structure:
...
4
votes
2answers
910 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='" + ...
3
votes
1answer
167 views
HTMLAgilityPack SelectNodes to select all <img> elements
I am making a project in C# that's basically an image screen scraper for an image-search related game. I'm trying to use HTMLAgilityPack to select all the image elements and put them in an ...
3
votes
1answer
357 views
Html Agility Pack cannot find list option using xpath
This is related to my previous question, but it seems I have another corner case where Html Agility Pack doesn't work as expected.
Here's the Html (stripped down to the essentials, and sensitive ...
3
votes
1answer
384 views
XPath search for all text nodes, not the inner text of any other child node
I'm using HtmlAgilityPack.
I hover over the parent node and its ChildNodes show several #text nodes. The XPath value shoes /code[1]/#text[1]. I try to use //#text to get all the text nodes but I ...
3
votes
2answers
253 views
HTMLAgilityPack and timeouts on load
I'm using HTMLAgilityPack in a parser that I have up on a server, but I'm having issues with one of the websites that I'm parsing: Every day around 6am they tend to shut down their servers for ...
3
votes
3answers
150 views
How can I extract just text from the html
I have a requirement to extract all the text that is present in the <body> of the html. Sample Html input :-
<html>
<title>title</title>
<body>
...
3
votes
3answers
187 views
Need help with XPATH for src value of a specific Html img tag
I am somewhat new to XPATH and understand most of the basics, but I am having some trouble with a particular query.
I am attempting to parse a Motley Fool page and return the source of the image for ...
3
votes
3answers
471 views
Can HtmlAgilityPack handle an xml file that comes with an xsl file to render html?
I was wondering the best way for HtmlAgilityPack to read an xml file that includes an xsl file to render html. Are there any settings on the HtmlDocument class that would assist in this, or do I have ...
3
votes
2answers
700 views
HTMl agility pack error parsing and returning XElement
I can parse the document and generate an output however the output cannot be parsed into an XElement because of a p tag, everything else within the string is parsed correctly.
My input:
var input = ...
3
votes
2answers
290 views
Parsing sections of HTML in c#
I need to parse sections from a string of HTML. For example:
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>[section=quote]</p>
<p>Mauris at turpis ...
3
votes
4answers
2k views
Parsing html with the HTML Agility Pack and Linq
I have the following HTML
(..)
<tbody>
<tr>
<td class="name"> Test1 </td>
<td class="data"> Data </td>
<td class="data2"> Data 2 </td>
...
3
votes
3answers
360 views
ASP.NET Agility Pack | How to parse a web page. that is taking post parameters?
I want to parse and page that takes POST parameters. like this is my scenario. i have to parse some search results. but the search parameter are sent in post body to that page.
To parse the search ...
3
votes
1answer
497 views
C# HTMLAgilityPack HTML to Text - Parse Errors
I need to extract text from an HTML file using C#.
I am trying to use HTMLAgilityPack but I am seeing some parse errors (tags not closed).
I am using these two options:
...
3
votes
1answer
925 views
XPath Expression not working in HtmlAgilityPack!
I know it may be of my noobness in XPath, but let me ask to make sure, cuz I've googled enough.
I have a website and wanna get the news headings from it: www.farsnews.com (it is Persian)
Using ...
3
votes
3answers
2k views
C# and HtmlAgilityPack encoding problem
WebClient GodLikeClient = new WebClient();
HtmlAgilityPack.HtmlDocument GodLikeHTML = new HtmlAgilityPack.HtmlDocument();
GodLikeHTML.Load(GodLikeClient.OpenRead("www.alfa.lt");
So this code ...
3
votes
2answers
250 views
Get first and second cell of every HTML table row
I'm trying to get just some specific cells in each row using HTMLAgilityPack.
foreach (HtmlNode row in ContentNode.SelectNodes("descendant::tr"))
{
//Do something to first cell
//Do something ...
3
votes
5answers
612 views
How can I get all content within <td> tag using a HTML Agility Pack?
So I'm writing an application that will do a little screen scraping. I'm using the HTML Agility Pack to load an entire HTML page into an instance of HtmlDocoument called doc. Now I want to parse that ...
3
votes
2answers
791 views
Can I use Html Agility Pack for this?
I could not find any tutorials on their site. I am wondering can I use Html Agility Pack and use it to parse a string?
Like say I have
string = "<b>Some code </b>
could I use agility ...
3
votes
2answers
1k views
Select all links from a Html table using XPath (and HtmlAgilityPack)
What I am trying to achieve is to extract all links with a href attribute that starts with http://, https:// or /. These links lie within a table (tbody > tr > td etc) with a certain class. I thought ...
3
votes
1answer
2k views
HTML Agility Pack
I want to parse the html table using html agility pack. I want to extract only some predefined column data from the table.
But I am new to parsing and html agility pack and I have tried but I don't ...