HTML parsing refers to the process of converting an HTML document to a tree-based Document Object Model with the goal of extracting information.

learn more… | top users | synonyms (1)

0
votes
0answers
26 views

C#.Net 2008 -> C++ translation

so I have found the following program and I am trying to accomplish the same result in C++. Please note this is NOT written by me, simply trying to understand it and rewrite in C++. What it does: It ...
-8
votes
0answers
38 views

How to parse an HTML5 file and CSS3 file [closed]

In my app i need parse HTML5 and CSS3 files. I want to do this in C#. Is there any library to do this? Thanks!
0
votes
0answers
8 views

simple HTML-file with video.js does not play videos on smartphones and IE >8

I normally do use Joomla. But I had big problems to get videos to start as I wanted. My work around is pretty simple: Any video, I want to play, has its own HTML file, which I generate manually (as 10 ...
0
votes
1answer
21 views

htmlcleaner parse with tags

I try to extract some part of page. I use parser HtmlCleaner, and it remove all tags. Are there some settings to save all html tags? Or maybe is better way to extract this part of code, using ...
0
votes
1answer
24 views

HTML parsing with HtmlAgilityPack in Windows Store App

i'm parsing HTML code to get Image Link in a "Windows Store Application" i'm Using Html Agility Pack ! Here The Code : async void LoidContent() { foreach (var feedItem in ...
0
votes
0answers
31 views

Python HTML getElementsByClassName alike manipulate on file content

I have saved the source code of a page to a file using Sikuli. I need a "roundup" on a batch of matrix style placed elements. But I don't want to calculate dimensions between them. I want URLs to type ...
1
vote
0answers
57 views

Scraping HTML in lisp

My question is related to another question found here Scraping an HTML table in Common Lisp? I am trying to extract data from a webpage in common lisp. I am currently using drakma to send the http ...
0
votes
1answer
25 views

iOS parse html after server side javascript is run

I am trying to parse a website into an iOS application... Parsing the html tags works fine with hpple, but i want to parse the site after Java scripts and other server side scripts are run... How ...
0
votes
3answers
38 views

PHP regex - find and replace link

I am trying to do this regex match and replace but not able to do it. Example <a href=one target=home>One</a> <a href=two>Two</a> <a href=three ...
0
votes
0answers
16 views

HTML mining - extract page fragments that contain semantic useful information

I have HTML documents (web pages) that are related to the subject T. Those documents contains areas with some information that are useful for me. I would like to extract those areas (sections). ...
1
vote
3answers
44 views

Increase value of digit within HTML string (jQuery)

I have a bunch of images in a folder which are all named as numbers. The first one is displayed on document load. <img src="image/01.jpg" /> I want to use jQuery to flick through the images. ...
1
vote
0answers
18 views

Tutorial for NodeJS's htmlparser?

I don't really understand the readme of htmlparser.. and I searched over the internet but cannot find a proper tutorial for it (or other NodeJS parsers). I believe for most of the time if there's no ...
-1
votes
1answer
22 views

Get Image Link From HTML in Windows Store App

I've tried to use HtmlAgilityPack, but it is not fully supported by WinRT, The " DocumentElement.SelectNodes " does not work on WinRT How Can I get An image link (src) from an HTML page ( or HTML ...
0
votes
0answers
16 views

PHP DOM Parser Timetable to get variables

I'm trying to get the contents of each cell using PHP Simple HTML DOM Parser however I cant seem to get it working correctly. The timetable is read vertically for each day and i'm trying to get each ...
0
votes
1answer
32 views

ios - How to parse HTML file?

I'm getting HTML content in below format. wsse:BinarySecurityToken wsu:Id=&quot;uuid:07747f2a-4be4-48fa-9654-5e12235f6040&quot; ...
0
votes
1answer
24 views

Repair/fix invalid HTML using Javascript/jquery

I want to use content(some div) on the page. So I request the the page using AJAX. Since I want to use some div (by ID), I have written the following code but the problem is the HTML that gets ...
0
votes
2answers
35 views

PHP Get contents of webpage

So I am using the PHP Simple HTML DOM Parser to get the contents of a webpage. After I knew what I was doing was right, I still got the error that there was nothing to be found. So here's what I am ...
0
votes
0answers
17 views

How Do I Avoid Mixed Content Warnings When Embedding Cross Origin JSONP

I've been using the service https://whateverorigin.org/ to parse a webpage, lets say google.com with the call $.getJSON('http://whateverorigin.org/get?url=http://google.com', function(data){ ...
0
votes
4answers
103 views

ios - How to parse HTML content in ios?

How do I parse HTML file? I'm getting an HTML file in the below code,I just want to get data in between BinarySecurityToken XML node. - (void)connectionDidFinishLoading:(NSURLConnection ...
0
votes
1answer
38 views

Can't parse a second table with beautifulsoup even if the first one works?

I am trying to parse tables using beautifulsoup. The first one on my page was easy but I cannot parse a similar table on the same page. I do not understand why. Here is the code. Thanks in advance ...
-1
votes
2answers
50 views

Wrapping Sentences within <p> Tags with <span>'s, But Keep Other Tags

To give you an idea of what I need, I have been using the below code to parse content within tags and wrap each sentence within tags so I can then interact with sentences on a page. ...
0
votes
2answers
42 views

itext pdf generation fail on parsing some html tags

I have this html code, which reside in db and I want to parse it in pdf. I am using itext for pdf generation. here is the html in db: <p>no note.</p><br> <ul><br> ...
1
vote
0answers
30 views

Regular Expression to strip stylesheet link tags [duplicate]

I have been looking for a good regular expression to match all link tags and strip them out of some HTML output. I haven't managed to find anything decent so far. Can anyone help out or recommend ...
-1
votes
1answer
38 views

ios - How to decode XML document? [duplicate]

I'm new to iPhone development,I'm trying to get access token from Google,When I logged in,I'm getting HTML content,in that HTML content I want to get token that is contained in BinarySecurityToken ...
4
votes
1answer
48 views

How to find if a DOM element has an event listener with Ruby

I'm using Watir and Nokogiri to parse web pages and interact with them. I would like to identify whether a DOM element triggers a script when it is clicked. From my research, I understand that this is ...
0
votes
2answers
39 views

Specify full path for image source in Ruby on Rails

I have HTML documents that contain image tags . I need to pick out each image tag's source attribute and specify a full path instead of the relative path already present . That is to append the ...
3
votes
0answers
31 views

Determine main article image - HTML Agility Pack

I would like to use HTML Agility Pack to determine the main article body and then extract the main article image from it. I have noticed that most of the site webmasters have their main content ...
0
votes
0answers
39 views

node.js parsing tags in html

I am trying to parse for a specific tag inside 2 websites. I need to do that in an async way but to display the results to the user at the end. I tried using htmlParser2 but I am not using it ...
1
vote
1answer
22 views

How to extract description if meta tag does't exist?

Many webpages doesn't have description meta tag, for example wikipedia. Here says, that If tag doesn't exist, then search engine, like Google get shorter paragraph. I don't know how to implement this ...
-2
votes
1answer
27 views

Read actual text of webpage excluding tags and everything. [closed]

This code is excluding HTML tags but the functions written in the webpage are not excluding. How to read actual text of webpage excluding tags and everything? How can I do this in Java? What code ...
1
vote
0answers
29 views

Syntax questions C# Html-Agility-Pack

This code sums the last column in the first table contained in an html document. (It ignores the first row.) 1.) How do I sum a specified column rather than just the last one? var sum = ...
0
votes
2answers
48 views

Simple HTML Parser issue

Hi so I'm trying to parse the ratemyprofessor website for professor name and comments and convert each div into plaintext. Here is the div class structure that I'm working with. <div ...
0
votes
1answer
18 views

How to get the value from a specific cell C# Html-Agility-Pack

How do I get a value from a specific location in the second table in the document. I need the value from the second cell down and third column over in the html document below. How do I do this. ...
1
vote
1answer
40 views

How can I retrieve and parse just the html returned from an URL?

I want to be able to programmatically (without it displaying in the browser) send an URL such as ...
2
votes
1answer
19 views

Python eTree Parser isn't appending an element

Look at my log and see how it says that the row I'm getting back from Postgres has been turned from a string into an element (and I print the string, print the element, print the isElement boolean!) ...
0
votes
1answer
43 views

simplify this python generation

I am new to python. Is there a way to simplify this: def getDivs(): divs = soup.findAll(name = "div", attrs = {"class" : "resultCell"}, recursive = True) for div in divs: h2 = ...
0
votes
1answer
22 views

Replacing an element with HTMLParser in python and using pscyopg2

In my database I have values like this: <p class="description">Text here <a href=#>Text here</a> </p> And I need that whole <p> object to replace the same <p ...
0
votes
1answer
33 views

How to write/overwrite a file with HTMLParser

I need to create some files from a template. I'm using psycopg2 to fetch from a database. Then I loop through. Now I need to write to file. Thanks! import sys from HTMLParser import HTMLParser from ...
0
votes
1answer
18 views

Facebook ad preview html snippet

According to facebook's docs, I can get an HTML preview snippet of my ad with this request: https://graph.facebook.com/CREATIVE_ID/previews?accesstoken=MY_ACCESS_TOKEN So I did and I got this: ...
0
votes
2answers
59 views

Replacing HTML tags with text attributes [duplicate]

I'm getting data from a web service and the result contains some HTML tags, that I'm then trying to convert. For example, I want to replace <P> tags with line breaks, and <STRONG> from ...
2
votes
1answer
112 views

Regular expression to replace words in web pages

I was looking for a regular expression (php) to find/replace some words in a web page. But, it cant replace words between all html tags, only between: italic <i>, bold <b> and plain text. ...
0
votes
2answers
31 views

Cross-domain HTML source extraction using JavaScript

Say I am in domain abc.com. I want to be able to get the HTML source of a page on xyz.com and then parse it using JavaScript. I know there is restriction of same origin policy, and I tried CORSwhich ...
0
votes
1answer
49 views

Sum colum in an html table using C# and html-agility-pack

How do I sum the values in a specific column of a specific table when the number of rows are unpredictable? Note that the header row contains text and uses "" instead of "". Using the sample html ...
0
votes
0answers
47 views

How to parse a table from a html page and is it possible to parse multiple html's at once in php [duplicate]

I am trying to parse a tabular structured data from a html page.. It has the following structure <table> <tr> <td><a href="url">name</a></td> ...
0
votes
0answers
14 views

Grabbing the first child of a <tr> tag?

Currently I'm following Ray Wenderlich's tutorial dealing with parsing html on ios. Everything is explained perfectly and according to this tree: they extract the title and url tag for each ...
0
votes
2answers
60 views

PHP - Parsing html tables via DOM

So I am using the PHP Simple HTML DOM Parser and I am trying to get the table list of Top Goalscorers from this webpage: ...
0
votes
2answers
35 views

how to get text between a specific span with HtmlUnit

I'm new to HtmlUnit and I'm not even sure if it is the right tool for my project. I'm trying to parse a website and extract the values I need from it. I need to get the value "07:05" from this, ...
0
votes
0answers
29 views

Multiple handlebar #each blocks

I am working on handlebars in my project and i wanted to see if anyone knows if its possible to include multiple {{#each this}} blocks in a HTML page. I am currently using the below block to output ...
1
vote
1answer
47 views

Simple HTML DOM Parser - Get all plaintex rather than text of certain element

I tried all the solutions posted on this question. Although it is similar to my question, it's solutions aren't working for me. I am trying to get the plain text that is outside of <b> and it ...
0
votes
0answers
23 views

Grab the second image source from the thread

Ok I'm using vbulletin. What i am trying to do is grab an image from a thread and display it on the forum home. Now i have a mod that does this and it does almost exactly what i want it to do. Here ...

1 2 3 4 5 49