HTML parsing refers to the process of converting an HTML document to a tree-based Document Object Model with the goal of extracting information.
574
votes
27answers
78k views
How to parse and process HTML/XML?
How can one parse HTML/XML and extract information from it?
What libraries exist for that purpose? What are their strengths and drawbacks?
This is a General Reference question for the php tag
186
votes
41answers
51k views
Options for HTML scraping?
I'm thinking of trying Beautiful Soup, a Python package for HTML scraping. Are there any other HTML scraping packages I should be looking at? Python is not a requirement, I'm actually interested in ...
141
votes
0answers
46k views
Robust and Mature HTML Parser for PHP [duplicate]
Are there any robust and mature HTML parsers available for PHP? A quick skimming of PEAR didn't turn anything up (lots of classes for generating HTML, not so much for consuming), and Google taught me ...
78
votes
8answers
68k views
How to normalize HTML in JavaScript or jQuery?
Tags can have multiple attributes. The order in which attributes appear in the code does not matter. For example:
<a href="#" title="#">
<a title="#" href="#">
How can I "normalize" the ...
70
votes
5answers
3k views
How do HTML parses work if they're not using regexp?
I see questions every day asking how to parse or extract something from some HTML string and the first answer/comment is always "Don't use RegEx to parse HTML, lest you feel the wrath!" (that last ...
59
votes
27answers
12k views
Can you provide examples of parsing HTML?
How do you parse HTML with a variety of languages and parsing libraries?
When answering:
Individual comments will be linked to in answers to questions about how to parse HTML with regexes as a ...
57
votes
0answers
8k views
How to parse HTML with PHP? [duplicate]
Possible Duplicate:
How to parse and process HTML with PHP?
Suggestion for a reference question. Stack Overflow has dozens of "How to parse HTML" questions coming in every day. However, ...
46
votes
3answers
32k views
Which Html Parser is best? [closed]
I code a lot of parsers. Up till now, I was using HtmlUnit headless browser for parsing and browser automation.
Now, I want to separate both the tasks.
As 80% of my work involves just parsing, I ...
32
votes
9answers
66k views
Problem with HTML Parser in IE
I am trying to create a dialog box that will appear only if the browser selected is IE (any version) however I get this error:
Message: HTML Parsing Error: Unable to modify the parent container ...
28
votes
2answers
31k 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 ...
24
votes
5answers
8k views
Parsing HTML in python - lxml or BeautifulSoup? Which of these is better for what kinds of purposes?
From what I can make out, the two main HTML parsing libraries in Python are lxml and BeautifulSoup. I've chosen BeautifulSoup for a project I'm working on, but I chose it for no particular reason ...
24
votes
7answers
29k views
Parsing HTML in Python
What's my best bet for parsing HTML if I can't use BeautifulSoup or lxml? I've got some code that uses SGMLlib but it's a bit low-level and it's now deprecated.
I would prefer if it could stomache a ...
24
votes
10answers
11k views
What is the best practice for parsing remote content with jQuery?
Following a jQuery ajax call to retrieve an entire XHTML document, what is the best way to select specific elements from the resulting string? Perhaps there is a library or plugin that solves this ...
22
votes
4answers
1k views
How does a parser (for example, HTML) work?
For argument's sake lets assume a HTML parser.
I've read that it tokenizes everything first, and then parses it.
What does tokenize mean?
Does the parser read every character each, building up a ...
22
votes
11answers
3k views
Cleaning HTML by removing extra/redundant formatting tags
I have been using CKEditor wysiwyg editor for a website where users are allowed to use the HTML editor to add some comments. I ended up having some extremely redundant nested HTML code in my database ...
21
votes
3answers
4k views
Nokogiri vs Hpricot?
Which one would you choose? My important attributes are (not in order):
Support and future enhancements.
Community and general knowledge base (on the Internet).
Comprehensive (I.E., proven to parse ...
19
votes
3answers
3k views
Web Scraping With Haskell
What is the current state of libraries for scraping websites with Haskell?
I'm trying to make myself do more of my quick oneoff tasks in Haskell, in order to help increase my comfort level with the ...
17
votes
1answer
6k views
TagSoup vs. Jsoup vs. HTML Parser vs. HotSax vs
The abundance of HTML parsers to choose from (and stick with) is mind boggling:
http://java-source.net/open-source/html-parsers
How do I choose one that best suits the following requirements:
...
17
votes
4answers
486 views
Parsing HTML to fix microtypography & glyph issues
I'm interested in microtypography issues on the web.
I want a tool to fix:
Quotes
“ (“) opening quote (instead of ")
” (”) closing quote (instead of ")
Apostrophe
’ ...
17
votes
4answers
462 views
How to abbreviate Html with Java?
A user enters text as HTML in a form , for example :
<p>this is my <strong>blog</strong> post,
very <i>long</i> and written in <b>HTML</b></p>
I ...
16
votes
8answers
9k views
What is parsing?
Parsing is something i come accross alot in development, but as a junior its one of those things i assume i will get the hang of at some point, when its needed. In my current project ive been told to ...
15
votes
7answers
2k views
data mining - how to identify main content on a webpage
Given a news article webpage (from any major news source such as times or bloomberg), I want to identify the main article content on that page and throw out the other misc elements such as ads, ...
14
votes
2answers
525 views
Why does a stray closing </p> tag generate an empty paragraph?
Apparently, if you have a closing </p> tag with no matching opening tag within the body element, most if not all browsers will generate an empty paragraph in its place:
<!DOCTYPE html>
...
14
votes
3answers
536 views
Building an HTML Diff/Patch Algorithm
A description of what I'm going to accomplish:
Input 2 (N is not essential) HTML documents.
Standardize the HTML format
Diff the two documents -- external styles are not important but anything ...
13
votes
2answers
4k views
Android HTML ImageGetter as AsyncTask
Okay, I'm losing my mind over this one. I have a method in my program which parses HTML. I want to include the inline images, and I am under the impression that using the Html.fromHtml(string, ...
13
votes
4answers
26k views
JavaScript: How to strip HTML tags from string? [duplicate]
Possible Duplicate:
Strip HTML from Text JavaScript
How can I strip the HTML from a string in JavaScript?
13
votes
7answers
755 views
Parse HTML and preserve original content
I have lots of HTML files. I want to replace some elements, keeping all the other content unchanged. For example, I would like to execute this jQuery expression (or some equivalent of it):
$('.header ...
13
votes
3answers
9k views
How do I parse a HTML page with Node.js
I need to parse (server side) big amounts of HTML pages.
We all agree that regexp is not the way to go here.
It seems to me that javascript is the native way of parsing a HTML page, but that ...
13
votes
5answers
4k views
Automatically convert Style Sheets to inline style
Don't have to worry about linked style or hover style.
I want to automatically convert files like this
<html>
<body>
<style>
body{background:#FFC}
p{background:red}
body, ...
12
votes
1answer
3k views
Noob question about DOMDocument in php
Hi I'm just starting reading documentation adn examples about DOM, for crawling and parsing, I'm used to do this with get_content, but it's time to change =D for a new project.
I have a div, like
...
12
votes
3answers
1k views
Java library for cleaning up HTML just like a browser would
So here's the challenge... I need to create clean HTML from random web pages out there in the wild. My goal is to read in a page and pass it off to a library which will in turn give me back ...
11
votes
2answers
6k views
HTML Agility Pack strip tags NOT IN whitelist
I'm trying to create a function which removes html tags and attributes which are not in a white list.
I have the following HTML:
<b>first text </b>
<b>second text here
...
11
votes
2answers
586 views
Which Perl modules for good for data munging?
Nine years ago when I started to parsing HTML and free text with Perl I read the classic Data Munging with Perl. Does someone know if David is planning to update the book or if there are similar books ...
11
votes
3answers
4k views
How to safely embed JSON with </script> in HTML document?
In a Rails 3.1 app, how can I safely embed some JSON data into an HTML document?
Suppose I have this in a controller action:
@tags = [
{name:"tag1", color:"green"},
...
10
votes
6answers
3k views
How to parse malformed HTML in python, using standard libraries
There are so many html and xml libraries built into python, that it's hard to believe there's no support for real-world HTML parsing.
I've found plenty of great third-party libraries for this task, ...
9
votes
2answers
23k views
Simple libxml2 HTML parsing example, using Objective-c, Xcode, and HTMLparser.h
Please can somebody show me a simple example of parsing some HTML using libxml.
#import <libxml2/libxml/HTMLparser.h>
NSString *html = @"<ul>"
"<li><input type=\"image\" ...
9
votes
1answer
149 views
How can I lazily parse big XHTML file in Clojure?
I have valid XHTML file (100 megabytes of data) with one large table. First tr are columns (for database), all other tr's are data. It is the only table in whole document and it is in structure ...
9
votes
2answers
2k 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 ...
9
votes
4answers
192 views
How do browsers parse a script tag exactly?
I've just run into a pathological case with HTML parsing. I've always thought that a <script> tag would run until the first closing </script> tag. But it turns out this is not always the ...
8
votes
3answers
10k views
how to use dom php parser
I'm new to DOM parsing in PHP:
I have a HTML file that I'm trying to parse. It has a bunch of DIVs like this:
<div id="interestingbox">
<div id="interestingdetails" class="txtnormal">
...
8
votes
5answers
4k views
Advantages of XSLT or Linq to XML
What advantages are there for using either XSLT or Linq to XML for HTML parsing in C#? This is under the assumption that the html has been cleaned so it is valid xhtml. These values will eventually ...
8
votes
1answer
3k views
Using XPath Contains against HTML in Java
I'm scraping values from HTML pages using XPath inside of a java program to get to a specific tag and occasionally using regular expressions to clean up the data I receive.
After some research, I ...
8
votes
1answer
2k views
xpath find node that does not contain child
I'm trying to create some xpath that will find all a tags that do not contain img tags, so that something such as
<a href="http://aol.com">link</a>
matches, but
<a ...
8
votes
3answers
5k views
HTML Text with tags to formatted text in an Excel cell
I've been looking around for a solution but have been coming up short. Is there a way to take HTML and import it to excel so that it is formatted as rich text (preferably by using VBA)? Basically, ...
8
votes
2answers
304 views
Best way to programmatically save a webpage to a Static HTML File
The more research I do, the more grim the outlook becomes.
I am trying to Flat Save, or Static Save a webpage with Python. This means merging all the styles to inline properties, and changing all ...
8
votes
6answers
5k views
is there a built-in html validator in Chrome, Opera, Safari?
In Firefox, there's a Extension called “Html Validator”. It adds a little indicator icon at the bottom right corner of your window. When a page you visit isn't valid, it lights up. You can click on it ...
7
votes
1answer
1k views
HtmlAgility - Save parsing to a string
Just tried using the HtmlAgility Pack for the first time and have a problem.
First I load in from a string variable.
string NewsText = dr["Message"].ToString();
HtmlAgilityPack.HtmlDocument htmlDoc ...
7
votes
1answer
10k views
BeautifulSoup HTML table parsing
I am trying to parse information (html tables) from this site: http://www.511virginia.org/RoadConditions.aspx?j=All&r=1
Currently I am using BeautifulSoup and the code I have looks like this
...
7
votes
4answers
3k views
How can I clean HTML tags out of a ColdFusion string?
I am looking for a quick way to parse HTML tags out of a ColdFusion string. We are pulling in an RSS feed that that could potentially have anything in it. We are then doing some manipulation of the ...
7
votes
2answers
8k views
HTML parsing in perl
I'm trying to parse the following HTML structure with in perl. I need to select all of the dd elements that contain the class message and also an id.
All I would like the script to do is loop through ...
