Tagged Questions
html-parsing is used for parsing and extracting the contents from an HTML file or an url.
180
votes
12answers
12k views
How to parse and process HTML with PHP?
How can one parse HTML 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
102
votes
37answers
20k 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 ...
71
votes
9answers
66k 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 ...
60
votes
5answers
2k views
If you're not supposed to use Regular Expressions to parse HTML, then how are HTML parsers written?
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 ...
57
votes
0answers
7k views
How to parse HTML with PHP? [closed]
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, ...
29
votes
9answers
54k 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 ...
26
votes
7answers
9k views
Which Html Parser is best?
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 ...
25
votes
7answers
15k views
Library Recommendation: C++ HTML Parser
Preferably a light weight HTML parser, not exactly creating a browser or looking to modulate JS or any http connections.
20
votes
8answers
6k 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 ...
17
votes
2answers
15k 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 ...
15
votes
6answers
541 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 ...
15
votes
3answers
2k views
nokogiri vs hpricot?
Which one would you choose? My important attributes are (not in order)
Support & Future enhancements
Community & general knowledge
base (on the Internet)
Comprehensive (i.e proven to
parse a ...
14
votes
3answers
171 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 ...
13
votes
8answers
1k 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 ...
12
votes
4answers
4k 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 ...
11
votes
3answers
210 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
266 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 ...
9
votes
6answers
499 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, ...
7
votes
2answers
511 views
Problem while parsing html -> xml and quering with Xpath
I want to parse a html page to get some data.
First, I convert it to XML document using SgmlReader.
Then, I load the result to XMLDocument and then navigate througt XPath:
//contains html document
...
7
votes
4answers
1k 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, ...
7
votes
5answers
3k 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 ...
7
votes
6answers
6k 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 ...
6
votes
5answers
342 views
remove empty tag pairs from HTML fragment
I have a user-submitted string that contains HTML content such as
"<p></p><div></div><p>Hello<br/>world</p><p></p>"
I would like to transform ...
6
votes
1answer
2k 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:
...
6
votes
1answer
401 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
...
6
votes
1answer
454 views
F# html parsing
What other options currently exist for parsing html in F#? Currently have some regular expressions but would prefer something like Pythons Beautiful Soup http://www.crummy.com/software/BeautifulSoup/ ...
6
votes
5answers
1k 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, ...
6
votes
4answers
2k 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 ...
5
votes
1answer
258 views
Jsoup: Extract all HTML between two blocks in CSS-less HTML
What would be an optimal way, using Jsoup, to extract all HTML (either to a String, Document or Elements) between two blocks that conform to this pattern:
<strong>
{any HTML could appear here, ...
5
votes
3answers
141 views
Writing an HTML Parser
I am currently attempting (or planning to attempt) to write a simple (as possible) program to parse an html document into a tree.
After googling I have found many answers saying "don't do it it's ...
5
votes
4answers
121 views
jQuery: Risk of not closing tags in constructors
Is there any reason I would use $('<div></div>') instead of $('<div>')?
Or $('<div><b></b></div>') instead of $('<div><b>')?
I like the latter ...
5
votes
1answer
451 views
E4X with NodeJS
Is there any way to get E4X(ECMAScript) to work with NodeJS?
It would really help to output slick html/xml without hassle/noise.
It works fine using SpiderMonkey since it is natively implemented, ...
5
votes
2answers
844 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 ...
5
votes
6answers
468 views
Vote on Pros and Cons of Java HTML to XML cleaners
I am looking to allow HTML emails (and other HTML uploads) without letting in scripts and stuff. I plan to have a white list of safe tags and attributes as well as a whitelist of CSS tags and value ...
5
votes
3answers
405 views
Parse Website for URLs
Just wondering if someone can help me further with the following. I want to parse the URL on this website:http://www.directorycritic.com/free-directory-list.html?pg=1&sort=pr
I have the following ...
5
votes
2answers
2k views
IE 8 Quirks vs Standards retrieving offsetHeight/offsetWidth
I am in the process of converting my application to use XHTML strict mode (it didn't have a DOCTYPE before). However, I noticed a significant degradation when getting offsetHeight/offsetWidth. This is ...
5
votes
2answers
11k 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\" ...
4
votes
1answer
30 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 ...
4
votes
5answers
70 views
Interacting with web pages in C#
There is a website that was created using cold fusion (not sure if this matters or not). I need to interact with this web site. The main things I need to do are navigate to different pages and click ...
4
votes
1answer
191 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 ...
4
votes
1answer
76 views
Remove javascript codes in parsing a webpage
When capturing the content of a webpage by CURL or file_get_contents, What is the easiest way to remove inline javascrip codes. I am thinking of regex to remove everything between tags; but regex is ...
4
votes
1answer
147 views
HTML in desktop application load a page with an iframe
I have a mx:html component in a AIR Desktop Application that load an external webpage into it...
this webpage has an iframe in it and the iframe load (obviously) another page...
I can't figure out ...
4
votes
2answers
105 views
select HTML text element with regex?
I want to look for © in an HTML document, and basically get the entity the copyright is attributed to.
The copyright line shows up a couple of different ways:
<p ...
4
votes
1answer
133 views
Jsoup: select() returns empty when it shouldn't
I am trying to select the infobox on Wikipedia's Google entry page: http://en.m.wikipedia.org/wiki/Google
So, I call:
contentDiv = document.select("div[id=content]").first();
Which works as ...
4
votes
3answers
212 views
How do I scrape only the <body> tag off of a website
I'm working on a webcrawler. At the moment i scrape the whole content and then using regular expression i remove <meta>, <script>, <style> and other tags and get the content of the ...
4
votes
4answers
240 views
What’s the most forgiving HTML parser in Python?
I have some random HTML and I used BeautifulSoup to parse it, but in most of the cases (>70%) it chokes. I tried using Beautiful soup 3.0.8 and 3.2.0 (there were some problems with 3.1.0 upwards), but ...
4
votes
3answers
297 views
Remove <br> tags from a parsed Beautiful Soup list?
I'm currently getting into a for loop with all the rows I want:
page = urllib2.urlopen(pageurl)
soup = BeautifulSoup(page)
tables = soup.find("td", "bodyTd")
for row in ...
4
votes
1answer
315 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 ...
4
votes
1answer
265 views
Looking for a CSS parser in Ruby
I'm looking for a CSS parser, similar to this one Looking for a CSS Parser in java , but in Ruby.
Input: an element of a HTML document.
Output: all styles associated to that specific element.
I've ...
4
votes
3answers
870 views
Using python to edit html, but lxml converts nice html entities to strange encoding
I'm trying to use python (with pyquery and lxml) to alter and clean up some html.
Eg. html = "<div><!-- word style><bleep><omgz 1,000 tags><--><p>It’s a ...