Tagged Questions
0
votes
2answers
32 views
Split text by Xpath.C# HtmlAgilityPack
I have a HtmlNode with InnerHtml:
<a>SomeText</a>
DividerText:
<br>
TextToSelect1
<br/>
TextToSelect2
<br/>
TextToSelect3
<br>
TextToSelect4
It is possible to ...
0
votes
1answer
27 views
Using HTMLAgilityPack Extract text, which is not between tags and comes after specific node
HTML code:
<b> CAR </b>
<br></br>
Car is something you can drive.
<br></br>
<br></br>
C# code:
HtmlAgilityPack.HtmlDocument ...
0
votes
0answers
34 views
Why does this HtmlAgilityPack code stop working when I dig deeper via XPath?
This code runs properly:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using ...
0
votes
1answer
63 views
How to get text that has no tag with htmlAgilityPack
I have an html file like below
<div>
<div style="margin-left:0.5em;">
<div class="tiny" style="margin-bottom:0.5em;">
<b><span class="h3color tiny">This review ...
1
vote
1answer
42 views
HtmlAgilityPack: Given a html file, how can I get nodes based on given class attributes
So basically I want to filter out the HTML and preserve the hierarchy of the nodes. For example, I have this and I only want the HTML that has the class "b.1.1" in its hierarchy:
<html>
...
0
votes
0answers
79 views
Xpath/HtmlAgilityPack: Getting the specific attributes from href tag
I'm using the HtmlAgilityPack to parse href tags in an html file. The href tags look like this:
<h3 class="product-name"><a href="http://www.somewebsite.com/blahblah" title="Click Here to ...
0
votes
1answer
102 views
HTML Agility Pack - using XPath to get a single node - Object Reference not set to an instance of an object
this is my first attempt to get an element value using HAP. I'm getting a null object error when I try to use InnerText.
the URL I am scraping is :-
...
1
vote
4answers
77 views
Combining these two expression into a single LINQ expression
I am using the HTMLAgilityPack to parse through some html. I am getting the result set that I am expecting when using and xpath query combined with a linq query. Is there a way that I could combine ...
0
votes
0answers
92 views
get text inside a html element
I'm using HTMLAgilityPack to get text inside a list of certain nodes.
Basically I'm reading out a HTML page with the following HTML:
<div class="video-overview yt-grid-fluid">
<h3 ...
-1
votes
2answers
47 views
How we can select the value of an <option> in <select> by using text in <option>text<option>
How we can select the value of an <option> in <select> by using 'text' in
<option value="123">text<option>
Here is the xpath,by using this i'm able to check that there is a ...
0
votes
1answer
78 views
How to apply substring-after and substring-before functions
My html structure as below
<td class="opps">1:2</td>
I am trying split value of td with XPath as below
.//*[contains(@class, 'opps')]/text()[normalize-space(substring-after(., ':'))]
...
1
vote
0answers
76 views
Loop out values from a div tag with the xpath and html agility
I'm trying to scrape a website. a comparison site and in such exists a div tags class several times so I would loop out information from each div tag to get something like this in my "div" list item:
...
1
vote
1answer
121 views
parsing htmlagilitypack (table without id's) vb.net
hope to get some answers from you guys! I have been using this site ALOT to find help with coding...
I use vb.net and htmlagilitypack to fetch data and it works, but not the way I want it to =)
I ...
1
vote
2answers
183 views
Selecting all nodes containing text with XPath
I have been struggling to resolve this problem I am having over the past couple of days. Say, I want to get all the text() from a HTML document, however I only want to know of and retrieve of the ...
0
votes
1answer
102 views
Get the value of all td tags using xpath and html agilty
How can I get information out of all td tags in Classen = "string_14" so that I can store it away clean without html code in.
I have thought about this:
enter code here
<table ...
1
vote
1answer
60 views
html AgilityPack XPath C# .net 4
I have to define xpath to access second span text to parse the following name-value html structure (see below) loaded to AgilityPack document. I would to do the folowing query using xpath and C#:
...
0
votes
1answer
34 views
XPath returns nothing, works everywhere else
Trying to parse this code with XPath: http://pastebin.com/Un9x1BRX
The page in action: http://fonix.dyndns.org:40000/soasc/
I want to get the composer name from this part:
<td>
...
0
votes
1answer
93 views
Selective screen scraping with HTMLAgilityPack and XPath
[This question has a relative that lives at: Screen scraping with htmlAgilityPack and XPath ]
I have some HTML to parse which has general appearance as follow:
...
<tr>
<td><a href="" ...
1
vote
1answer
67 views
Screen scraping with htmlAgilityPack and XPath
[This question has a relative that lives at: Selective screen scraping with HTMLAgilityPack and XPath ]
I have some HTML to parse which has general appearance as follow:
...
<tr>
...
0
votes
2answers
77 views
HtmlAgilityPack xPath scraping
I am trying to scrape this site
http://www.gotickets.com/calendar.php?Display=Daily&Date=2013-03-12&EventTypeID=2&EventID=0&GenreID=159&VenueID=0&MarketAreaID=0
This is what ...
0
votes
1answer
54 views
Remove child throws exception
This code throw me a strange exception. Node "<span class="OrganisationOut"></span>" was not found in the collection but when I check the outerHTML of span its <span ...
0
votes
1answer
42 views
XPath HTML finding nodes
I am using HtmlAgilityPack to try to find HTML 'A' nodes that have a href attribute that contains a certain string, in my case the string '/groups/':
HtmlNodeCollection groups = ...
0
votes
1answer
78 views
Html Agility Pack xPath issue
I am developping a .Net console application.
I want to request an HTML page and then pick up some data inside.
I use the Html Agility Pack to build an object model from the response HTML page and to ...
0
votes
4answers
255 views
Using htmlAgilityPack scraping all inner text from <a> tag
I want to scrap all the word from the link http://search.freefind.com/siteindex.html?id=59478474<r=10240&fwr=0&pid=i&ics=1
I tried something like this:
HtmlWeb web = new HtmlWeb();
...
2
votes
4answers
196 views
HtmlAgilityPack and selecting Nodes and Subnodes
Hope somebody can help me.
Let´s say I have a html document that contains multiple divs like this example:
<div class="search_hit">
<span prop="name">Richard Winchester</span>
...
1
vote
2answers
140 views
Select HTML from specific position using Html Agility Pack
I need to obtain html text nodes from, let's say, line 64,line position 45 to line 183,line position 22. I'm pretty new to XPath and I'm not quite sure what are my options. How should I proceed?
I ...
0
votes
1answer
68 views
HtmlAgilityPack XML Capturing following sibling
Below is the sample input for my HAP.
<?xml version="1.0" encoding="UTF-8"?>
<html>
<div class="category">Name:</div>
<div class="category1">Company ABC</div>
...
0
votes
2answers
192 views
HtmlAgilityPack, using XPath contains method and predicates
HtmlAgilityPack, using XPath contains method
I'm using HtmlAgilityPack and i need to know if a class attribute contains a specific word, now i have this page:
<div class="yom-mod yom-art-content ...
2
votes
2answers
72 views
Inner text of Node ignoring inner text of children
Pardon me if it sounds too simple to be asked here but since this is my very first day with html-agility-pack, I am unable to sort out a way to select the inner text of a node which is the direct ...
3
votes
1answer
148 views
htmlagilitypack xpath not working
I have a problem that my xpath is not working.
I am trying to get the url of Google.com's next link at the bottom.
But i am unable to reach on url using Xpath.
Please help me in correcting my ...
0
votes
2answers
350 views
XPath - select text of selected child nodes
Given that I have a following xml:
<div id="Main">
<div class="quote">
This is a quote and I don't want this text
</div>
<p>
This is content.
...
0
votes
2answers
123 views
htmlagilitypack xpath incorrect
I have a problem that my xpath is not working.
I am trying to get the url from Google.com's search result list into a string list.
But i am unable to reach on url using Xpath.
Please help me in ...
1
vote
1answer
119 views
How to search both class and ID names in HTML code using same xpath query?
I am using the below code to search the class name abc in the HTML code:
nodes = doc.DocumentNode.SelectNodes("//*[contains(concat(' ', normalize-space(@class), ' '), ' abc ')]");
Which is giving ...
0
votes
1answer
77 views
Xpath where parent and child both have attribute - htmlagilitypack
I have something like this,
<div class="rightpanel">
.
.
<ul..>...</ul>
<ul class="side-panel categories"></ul>
.
</div>
I am trying to select the ul having ...
3
votes
3answers
735 views
HtmlAgilityPack Get all links inside a DIV
I want to be able to get 2 links from inside a div.
Currently I can select one but whene there's more it doesn't seem to work.
HtmlWeb web = new HtmlWeb();
HtmlDocument doc = web.Load(url);
...
0
votes
2answers
59 views
Selecting all the formatting Nodes in XHTML
Using HTML Agility Pack, I am trying to select nodes in XHTML using XPATH.
I want to select the children I listed below in each p tag, but not the grandchildren:
<strike></strike>
...
0
votes
1answer
187 views
XPath in HtmlAgilityPack
I have the follow xpath '/html/body/div[4]/div[2]/div/div/h1' for 'http://stackoverflow.com/', that is 'Top Questions' header.
How to use it in HtmlAgilityPack?
var wc = new WebClient();
wc.Encoding ...
1
vote
2answers
161 views
XPath - How to select node that has only 1 class?
For xpath on c#, how can I select a node by class where the node only has that 1 class?
For example, if I had this:
<span class="red blue"></span>
<span class="red"></span>
...
2
votes
3answers
163 views
Select Nth child Node in HTML Document
I have an html document that I need to grab all table elements that are the 5th table deep in the DOM, not to be confused with the 5th child table. My problem is this 5 table deep structure could be ...
1
vote
1answer
110 views
HTML Agility Pack 2
I am tring to scrap This Website .
The below Xpath expression working fine with FirePath firebug extension
html/body/table/tbody/tr[3]/td
But using same xpath expression the below code gives me ...
1
vote
1answer
104 views
Find the node that has no children. If it has any <span> children, just ignore it
I'm using HTMLAgilityPack. I have something like this:
<div class="address">
<h3>Postadress</h3>
<div class="box-address">Box 27 </div>
<div ...
1
vote
1answer
99 views
Order HtmlNodes Based on their position on the HTML Page (C# / XPath)
Context:
I am parsing the result of a Query on this service, but the HTML with the result is a mess.
My goal is the build a "KeyValue" pair with each "attribute and value" shown as result of this ...
0
votes
1answer
96 views
Getting date and time using HtmlAgilityPack from my website for unity
I'm trying to grab the date and time from my website http://www.thisisnotaballgame.com/time using the code here. The issue is I'm getting the line before it becomes a date and time and it's an iframe. ...
0
votes
2answers
186 views
Loop through all descendants of a node and inspect them one by one
I need to make a list of the records in a specific web page. I got the page source in a text file. I need to traverse this node, element by element:
HtmlNodeCollection resultContainer = ...
5
votes
2answers
553 views
HtmlAgilityPack SelectNodes expression to ignore an element with a certain attribute
I am trying to select nodes except from script nodes and a ul that has a class called 'relativeNav'. Can someone please direct me to the right path? I have been searching for this for a week and I ...
3
votes
2answers
282 views
XPath in VB.NET with HTML Agility pack
i have the following vb.net code which works fine and in the message box i see the exact number of elements which have an id attribute.
Dim hreftext = htmldoc.DocumentNode.SelectNodes("//*[@id]")
...
1
vote
1answer
393 views
Get contents of div using html agility in asp.net along with complete HTML & css
I need to scrape website & get Tennis Drawsheets i am trying to achive it with HTML Agility pack but so far i dont have any success.
Sample link of the scrape URL ...
-2
votes
1answer
105 views
Use HtmlAgilityPack to extract element XPaths [closed]
I'm trying to use HtmlAgilityPack to extract the XPaths of each element on a web page.
I've seen people using it to fix html links or extract other information from webpages, i wonder if this will ...
1
vote
1answer
152 views
Load HtmlDocument from html with specific symbols (<, >)
I'm creating HtmlDocument and using LoadHtml(string). My input html string sometimes contains symbols < and > in it. So html parses incorrectly, for example:
My html is
<p>Value < 20 ...
0
votes
1answer
173 views
Proper way to change HtmlNode value in document using HtmlAgilityPack
I want to change node's inner html in the document but the following code doesn't work unfortunately:
HtmlNodeCollection sourceTables = _sourceDoc.DocumentNode.SelectNodes("//table");
...




