HTML parsing refers to the process of converting an HTML document to a tree-based Document Object Model with the goal of extracting information.
0
votes
1answer
23 views
How to collect (get and parse) the required information/data from a HTTP website?
I have a problem and unable to solve it since last two weeks. I want some help here. I actually want to get and use some useful data from a HTTP website. This website actually contains accidents, ...
0
votes
1answer
17 views
Getting specific information from a website C# windows store app
I am trying to get specific information from a website. Right Now I have this html string as you can see my code, the html source code of the website is placed in "responseText". I know I can do this ...
3
votes
2answers
46 views
How to count rows in a table in an html file C#
When there is a compound table inside an html file how can one count the rows of the parent table.
What I mean by a compound table; a table in which other tables are contained within some of its ...
0
votes
0answers
12 views
reveal.js HTML not evaluated
I am using Hakim El Hattab's amazing reveal.js, and besides the problem below (which is due to my placeholders I noticed...), the script is working awesome for me.
Due to this being because of my ...
0
votes
0answers
18 views
Need some help getting an html parsing project off the ground
I came here for help, because I'm starting a project and I don't even know what questions to ask.
What it boils down to is that I have a bunch of html files that I need to parse for various pieces of ...
1
vote
2answers
30 views
Extracting tables containing a string with BeautifulSoup
I am trying to parse a website which contains many tables within tables within tables etc, using BeautifulSoup. Specifically I am looking at websites of this form. I could like to extract the relevant ...
1
vote
1answer
22 views
PHP preg_match - matching html elements
Ok so I have a regular expression I'm trying to use to match a certain pattern in some html files. Here's the preg_match statement:
preg_match('@<'.$htmlElementType.' ...
-3
votes
1answer
30 views
Parse xml like string using PHP [duplicate]
I have a string that is of the format:
<!--Vendor: A, Format: IFrame, IO: -->
<iframe src="xyz.com "scrolling="no" width="180" height="150" frameborder="0" marginheight="0" marginwidth="0" ...
0
votes
1answer
32 views
Selenium - Get elements html rather Text Value
Via that code i have extracted all desired text out of a html document
private void RunThroughSearch(string url)
{
private IWebDriver driver;
driver = new FirefoxDriver();
INavigation ...
0
votes
1answer
15 views
Discovering the depth and count of tables on an HTML page with Perl
I have local copies of numerous downloaded web-pages. The pages almost certainly have only a few different types of table layouts, but before looking to extract data, I first want to print out the ...
0
votes
0answers
45 views
+150
Get Attributes of a tag in Cpp using IHTMLDOMAttribute
please help i am doing a html parsing using MSHTML. My code for getting all attributes of a particular tag is like this
void GetAttributes(MSHTML::IHTMLElementPtr pColumnInnerElement)
{
...
0
votes
1answer
24 views
How can I programmatically get the hot topic of the day/hour/moment? [closed]
I would like to grab the current hot topic when my page loads (it could be anything from a civil war in Syria to a sports team or a wardrobe malfunction). I would like it to be a simple web service ...
0
votes
1answer
22 views
how to get the IDs of HTML elements only which are visibile on webpage like textbox,combobox, radioboutton, combobox at a time using VBA
I have created a tool where it takes all the HTml input elements IDs with tagname as input and store this IDs in excel sheet with their Values and when i wanted to change the values in the webpage i ...
0
votes
2answers
40 views
get data from an HTML table into an Access database
How I can fill a database dynamically from a HTML table (e.g., from Market data S&P 500)?
I have an account with Yahoo! Financial. In the account I can view financial data in HTML.
I need a ...
0
votes
0answers
20 views
Parse CloudApp link for get direct content in javascript
When I upload a file to CloudApp, I get a link like
cl.ly/e9fe90fewpfwe
Some times the link is an image and others is a file.
Is there a way in javascript to do something like this
var ...