Linked Questions

4 votes
2 answers
2k views

This is just a general question. Currently I am doing webpage scraping using regex. But I think it is sometimes too difficult to figure out the regular expression, so I am thinking is XSL/XPath an ...
Kevin's user avatar
  • 6,851
2 votes
1 answer
2k views

I'm following the answer given here: https://stackoverflow.com/a/18066671 string Url = "http://www.owgr.com/ranking"; HtmlWeb web = new HtmlWeb(); HtmlDocument doc = web.Load(Url); ...
Jimmy's user avatar
  • 3,041
2 votes
1 answer
2k views

I have got this new project that I am not familiar in working with. One task is that I need to navigate some websites to collect some data. One sample website would be this: https://www.hudhomestore....
Khalil Khalaf's user avatar
-1 votes
1 answer
2k views

I have data like this: <tr class=hdr> <th class="al cf">Name</th> <th class="al">Type</th> <th class="ar">Used Drive Space</th> <th class="...
Jeco Alviano's user avatar
-1 votes
2 answers
2k views

I was asked to add a corporate header and footer in a webpage that I'm building. The design team gave me two links, one with the header and the another with the footer. What I did was to open that ...
MANUELAN00's user avatar
0 votes
1 answer
1k views

I am in the same situation at the guy who asked this question. I need to get some data from a website saved as a string. My problem here is, that the website i need to save data from, requires the ...
Mldx's user avatar
  • 13
0 votes
2 answers
1k views

I want to get the html of a web page. Then with this html there are two elements who's xpath I have that I want to read. I have little to zero knowledge on this topic. When searching I keep seeing ...
mHelpMe's user avatar
  • 6,738
0 votes
1 answer
347 views

First of all I am fairly new to this so please forgive me if I am asking a noobish question. I am using Xamarin Forms and trying to get some table data from a webpage. This is my current code block: ...
Poodle Galluzzo's user avatar
0 votes
2 answers
161 views

I have this XML feed file and I don`t know how to handle a problem. So, the code is: <PRICE> <WIC>GA-H110M-S2H</WIC> <DESCRIPTION> GIGABYTE Main Board Desktop INTEL H110 (...
R. Gabriel's user avatar
1 vote
0 answers
151 views

I am trying to get the value of an ID from a website and put that into a textbox. The website code looks like this: <input type="hidden" id="recaptcha-token" value="...
Andre's user avatar
  • 41
0 votes
1 answer
61 views

Essentially what I am attempting to do is you enter a piece of information in a textbox and click submit. It'll then check another website to see if the username is available It'll then return back ...
Brian Elliott's user avatar
0 votes
0 answers
45 views

I found a question posted here that had something interesting i wanted to implement in my application. Previous question(this is using HtmlAgilityPack): Pulling data from a webpage, parsing it for ...
firehotguitar88's user avatar
0 votes
0 answers
44 views

I want to retrieve my Bitcoin mining hashrate from my pool webpage and store it as an int so that I can print it to the console. I tried using the HtmlAgilityPack which never seemed to have worked ...
Philip Becker's user avatar