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
21 views
Parsing rows of information from html using python
I wanted to find a way to parse information from:
<tr>
<td class="prodSpecAtribute">Rulebook Chapter</td>
<td colspan="5">
<a ...
0
votes
2answers
30 views
Java API that can verify whether a HTML document is well-formed or not
Is there an java API within the Maven repository that can parse a HTML document and verify if it is well-formed or not?
UPDATE:
The code in my program looks like this:
url = ...
1
vote
2answers
35 views
I would like to parse an html source string to find a specific tag in Java
So I have the following html source:
<form action='http://example.com' method='get'>
<P>Some example text here.</P>
<input type='text' class='is-input' ...
0
votes
2answers
47 views
How do I use a regex search phrase in HTTP response body?
I am trying to search for a phrase like this in HTTP response body:
>> myvar1
<HTML>
<HEAD> <TITLE>TestExample [Date]</TITLE></HEAD>
</HTML>
When I do ...
1
vote
0answers
14 views
Side effects after increasing MAX_FILE_SIZE in Simple HTML Dom Parser?
I have just one small question related to the great software simplehtmldom parser.
Is it safe to increase the MAX_FILE_SIZE from default 600000 to e.g. 100 * 600000 ?
I know increasing it will need ...
0
votes
0answers
26 views
Simple PHP Dom Parser Can't Access
I am trying to access one of the turkish ministry of health websites: I've parsed the news from the rest, but this one I can't reach. I've tried many other tricks but when I try this, it gets stuck ...
0
votes
0answers
32 views
How to replace a value of an attribute in JS function on run time?
I am working on my Java application that (besides other things) produces HTML. In this HTML I need to change a value of one attribute inside one JS function every time I run it. The process is like ...
0
votes
0answers
93 views
Perl end-of-line regex
I have a Perl script that executes a regex to find a markup tag (<tag>).
My regex is: <tag([^>]+)>
This works for most intances, however, I've found an instance where it's not ...
0
votes
0answers
30 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
41 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
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).
...
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
22 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
27 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 ...
17
votes
4answers
484 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
’ ...
0
votes
0answers
22 views
jtidy fails to parse html - options
So I was trying to evaluate a couple of the HTML parsers and gave JTidy a try. Trying to parse this URL:
http://htmlcleaner.sourceforge.net/doc/org/htmlcleaner/TagNode.html
Gives these errors:
...
0
votes
1answer
26 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 ...
4
votes
2answers
4k views
Example for parsing (X)Html with libxml2 in iOS
Recently I started to play around with the libxml2 lib within an iOS iPhone project. I read some useful links, like:
http://laurentparenteau.com/blog/2009/12/parsing-xhtml-in-c-a-libxml2-tutorial/
...
0
votes
0answers
35 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 ...
0
votes
3answers
44 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
1answer
704 views
How to solve iPhone app hpple HTML Parsing 'libxml/tree.h' file not found?
I am trying to parse HTML URL content using hpple for iPhone app. I want to parse and get data from like this URL http://www.example.com/mobile/403.html. I have used Google and found hpple for HTML ...
1
vote
0answers
70 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
0answers
82 views
Set HTML cleaner to ignore Mobile sites on Android?
I am using HTMLCleaner to parse the HTML of a page.
I cannot, however, parse the HTML of pages that have a mobile specific site that contains a pop-up/alert (usually to inform that there is an Android ...
0
votes
3answers
181 views
html5lib. How to get valid html without adding html, head and body tags?
I'm validating custom HTML from users with html5lib. The problem is the html5lib adds html, head and body tags, which I don't need.
parser = ...
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. ...
2
votes
2answers
1k views
zend_mm_heap error with simple_html_dom
I'm trying to parse an HTML file with simplehtmldom and I'm getting this error:
zend_mm_heap corrupted
after about 4 seconds of execution on a 8231 lines HTML file. Could this be a bug or just ...
6
votes
3answers
3k views
Extract links from a web page using Go lang
I am learning google's Go programming language. Does anyone know the best practice to extract all URLs from a html web page?
Coming from the Java's world, there are libraries to do the job, for ...
1
vote
0answers
21 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
24 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 ...
-1
votes
2answers
52 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
0answers
18 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
33 views
ios - How to parse HTML file?
I'm getting HTML content in below format.
wsse:BinarySecurityToken wsu:Id="uuid:07747f2a-4be4-48fa-9654-5e12235f6040" ...
0
votes
1answer
26 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
36 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 ...
4
votes
1answer
51 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
46 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>
...
0
votes
0answers
18 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
1answer
23 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
4answers
104 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 ...
1
vote
1answer
40 views
HtmlAgilityPack: Given a html file, how can I get nodes based on given class attributes
So basically I want to filter out the HTML and preserve the hierarchy of the nodes. For example, I have this and I only want the HTML that has the class "b.1.1" in its hierarchy:
<html>
...
0
votes
1answer
40 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
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
39 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 ...
0
votes
2answers
41 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
32 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 ...
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 ...
3
votes
0answers
143 views
HTML to RTF string using Python
I am looking for a way to convert HTML text to RTF string. Is there any libraries that does this job. I get html content dynamically in my project and need it to be rendered in RTF format. I am using ...
0
votes
0answers
40 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 ...
571
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
1
vote
1answer
42 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 ...






