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
0answers
81 views
Reading and parsing a file inside HTML using javascript
I have a text files on my desktop which continuously gets updated(new rows gets appended to it) .I am trying to create a code which can read this data continuously (and possibly parse - next step) and ...
0
votes
1answer
59 views
Why does scrapy return two of each item?
Scrapy returns two results for each item I would like to scrape. I could just delete the duplicates later on in the CSV file, but I feel like there is a much more elegant solution that I am not ...
2
votes
1answer
123 views
Speeding up CsQuery selectors by using html substring
I want to parse some complex/heavy HTML pages. I recently read about CsQuery and checked the performance comparation of CsQuery Vs Html Agility Pack and Fizzler . According to these tests, CsQuery ...
0
votes
1answer
92 views
python - how to replace all link tags in html with an <em> tag?
I have a routine that converts a long article string into a shorted summary in PHP but rather than do this at page render I'd like to store the summary in a database.
I have everything all sorted out ...
0
votes
2answers
46 views
lxml findall div and span tags
How can I find all div and span tags with order preserved.With BeautifulSoup it is very simple: soup.findAll(name=['span', 'div']), but I switched recently to lxml since it is much faster than ...
0
votes
2answers
76 views
Using RegEx to pull data from between pseudotags (can't use BeautifulSoup)
I've been trying every which way and no matter what I do I get a blank output. Here's a shortened version of what I have in my file that I'm trying to import and parse:
<PRESOL>
...
1
vote
2answers
150 views
jQuery parse string data
My simulation results are acquired from REST service which contains strings and numerical values. I am able to parse the numerical ones (x_water), but have difficulties with the strings (x_date). ...
0
votes
1answer
95 views
Remove white space from entire Html but inside pre with regular expressions in php
I'm using the following regular expression found in this post: (?<=\s)\s+(?![^<>]*)
When I do this:
echo gzencode( trim( preg_replace('/(?<=\s)\s+(?![^<>]*<\/pre>)/', '', $html) ...
1
vote
1answer
41 views
Difference between calling a script in the onload event or placing code at end of html
I was reading the google maps api documentation and stumbled across a paragraph that explains the Asynchronously Loading the API. The api documentation can be found here
As an example it showed a ...
0
votes
1answer
46 views
regex using two markers
If I have an entire webpage html loaded to a php variable using
$html = file_get_contents('URL');
and im writing the content of this to a file using:
$myFile = "localdownload.txt";
$fh = ...
4
votes
1answer
89 views
Create Snapshot/Thumbnail of a blog entry using mvc
I need to generate a snapshot from multiple links of blogs.
What i have is a list of text like these
"Report: Twitter Will Release Music Discovery App This Month http://on.mash.to/10L1v49 via ...
0
votes
1answer
40 views
generic mark up language parser
I would like to parse a html page and extract the tags from it. I need suggestions on some good algorithms to do this in C? I have tried looking for libraries but most of them seem to support python, ...
0
votes
1answer
59 views
parse html tree with nested loops using nokogiri
Hi I'm new to nokogiri and trying to parse an HTML document with a varied tree structure. Any suggestions on how to go about parsing it would be great. I'd like to capture all the text on this page.
...
1
vote
1answer
44 views
Trouble with PHP preg_replace()
I feel like an amateur for asking this, but I've been struggling at this for a long time and can't solve the problem.
I'm making a forum with embedded YouTube videos and a rich text editor. I need a ...
0
votes
1answer
372 views
batch script get html site and parse content (without wget, curl or other external app)
i need to work with windows cmd functionallity only. i need two vars/strings from a website to use in the batchscript for validate actions with it. to not make it not too simple this website needs ...
0
votes
4answers
415 views
PHP Simple HTML DOM Parser how to get Third table using find method
I have HTML code like following structure
how to fetch Third table content from this HTML code using PHP Simple HTML DOM find method.
<table width="100%" cellspacing="0" cellpadding="0" ...
0
votes
1answer
63 views
Extract text from specific HTML location across multiple pages
I have been experimenting with Jericho HTML Parser and Selenium IDE for the purpose of extracting text from a specific location inside HTML across multiple pages.
I have not found a simple example of ...
0
votes
1answer
95 views
Parse HTML page in Java
I'm parsing this page segment:
<tr valign="middle">
<td class="inner"><span style=""><span class="" title=""></span> 2 <span class="icon ok" ...
0
votes
2answers
71 views
Extract whitespace-collapsed text from html as it would be rendered
I use an html parser (Neko) in order to extract the free-text of an html document.
Since I'm interested in text's semantic I must give special attention to the distance between words as it appears in ...
1
vote
2answers
30 views
java or jdk version requirement for jsoup
Does Jsoup support jdk 1.4?
What is the minimum version of jdk required for jsoup?
If jsoup does not support jdk 1.4, then is there any other html parser which I can use with jdk 1.4 to edit my html.
0
votes
1answer
187 views
Download image from webpage using python
I am trying to write a python script that download an image from a webpage.on the webpage (I am using NASA's picture of the day page), a new picture is posted everyday, with different file names.
so ...
0
votes
0answers
98 views
Using BeautifulSoup's replaceWith to replace all 'a' tags with tag content
EDIT: Basically, I'm trying to perform a Decompose, but instead of removing a tag and completely destroying its contents, I'd like to replace the tag with its contents.
I'd like to replace all 'a' ...
0
votes
1answer
56 views
python- extract html table without lossing axis titles
Q1. Is there any way to extract data from the table but still able to track back the axis titles?
Q2. which approach will be better to extract data from a html table? HTMLParser or beautifulsoup or ...
1
vote
3answers
62 views
Extract URL from HTML using Javascript and use it in a function
I need to extract URL link from html.
<a rel="nofollow" href="link" class="1">
There is only one such link on the whole page.
Then I need to add use it as a.href in this function:
function ...
0
votes
1answer
207 views
How can i parse html file in windows phone 7?
Hi am using xml file given below,i want to parse html file .
<Description>
<Fullcontent>
<div id="container" class="cf">
<link rel="stylesheet" ...
0
votes
0answers
9 views
getting text from a .LST link
I want to get the list of words from the following .LST link:
http://www.itasoftware.com/careers/work-at-ita/PuzzleFiles/WORD.LST
My idea was to parse out the html source. But when I click view ...
0
votes
5answers
327 views
Extract img src from string with preg_match_all
I've been trying to use preg_match_all for 30 minutes but it looks like I can't do it.
Basically I have a $var which contains a string of HTML code. For example:
<br>iihfuhuf
<img ...
1
vote
3answers
43 views
Perl HTML::TreeBuilder Class “Contains” Condition
I'm trying to use Perls HTML::TreeBuilder to extract data from an HTML page. My selectors include the following:
$root->look_down(_tag => 'div', class => 'member-search-results');
However, ...
0
votes
0answers
49 views
GetInnerTextForHtmlTags is not returning any value
I am trying to use an HTML Parser to fetch the text within a specific tag e.g. title tag.
In .Net 4.0 and using the namespace Microsoft.VisualStudio.TestTools.WebTesting in a web application I am ...
0
votes
2answers
209 views
PHP preg_replace match HTML attribute
I'm attempting to remove the title attribute from HTML elements.
function remove_title_attributes($input) {
return remove_html_attribute('title', $input);
}
/**
* To remove an attribute from an ...
0
votes
3answers
69 views
Python - Issues trying to use LXML to parse Website Search Results
I am trying to use LXML to parse the search results returned from this search URL:
http://www.rte.ie/player/ie/search/?q=news
The article tags returned in the HTML is this:
<article ...
0
votes
1answer
74 views
Play framework 2 display video on the page
I have class Article :
@Entity
public class Article {
@Id
public Long id;
@Constraints.Required
public String title;
@Formats.DateTime(pattern="yyyy-MM-dd")
public Date added;
...
1
vote
0answers
20 views
how to a method with two block as params,the first block have a return value,the second block need to get the return value
the source code in my project like below.
the frist block return a object,the the second block need the object been passed in as param
[kNetManagerInstance exeHttpRequest:anUrl requestFrom:self ...
0
votes
3answers
104 views
A server-side library to extract the content of web-pages
I'm looking for a server-side library (preferably in PHP) to parse and extract the content of web-pages that is free for commercial use. It should be able to extract the headline and html (including ...
0
votes
2answers
94 views
How do I scrape a website for information?
I want my program to automatically download only certain information off a website. After finding out that this is nearly impossible I figured it would be best if the program would just download the ...
0
votes
1answer
47 views
Understand a heavy viewstate in a POST request to parse an ASP.NET Webpage
This is the website causing me some troubles: http://fd1-www.leclercdrive.fr/097701/courses/pgeWMEL009_Courses.aspx
For each product I select in this shop I register the full POST request in order ...
1
vote
2answers
86 views
How to extract HTML tags from the web page generated at runtime
I am using a SimpleHTMLDOM parser to extract HTML data from web pages. But I came across websites such as www.coursera.com wherein the webpage is generated at runtime.
I need to know has anyone tried ...
0
votes
0answers
42 views
BeautifulSoup and tags
I'm trying to extract some urls using BeautifulSoup. I'm using this code:
url = 'http://www.elcachondeo.cl/?cat=188'
data = urllib2.urlopen(url).read()
soup = BeautifulSoup(data)
xa = ...
0
votes
1answer
131 views
Get all elements by class name using DOMDocument
This question seems to have been answered numerous times but i still cant seem to put the pieces together.
I would like to get node value of every class by name. for example
<td ...
0
votes
1answer
47 views
Errors in testing HTML parsing in free web hosting sites [closed]
I needed to test the html parsing code of a site. it runs okay in java console.. Tried using my3gb.com and x10hosting.. But in both i get the error time-out exception..??
Please suggest a hosting ...
0
votes
1answer
139 views
Using HtmlAgilityPack with c# to Find Nested repeated class name section
I'm having trouble figuring out what the query (XPath?) is to get to a nested element as follows. I'm wanting to get the "200" out of the span. the things I know for sure are the out class is "top2 ...
0
votes
1answer
44 views
Use wildcard (or regexp) in HTMLparser HasAttributeFilter parameter
I use org.htmlparser. How I can received nodelist by class mask?
On example:
<span class="selection-link normal coeff816128@Result.draw">....</span>
<span class="selection normal ...
2
votes
0answers
84 views
Cast a Nokogiri::XML::Document to a Nokogiri::HTML::Document
I want to transform an XML document to HTML using XSL, tinker with it a little, then render it out. This is essentially what I'm doing:
source = Nokogiri::XML(File.read 'source.xml')
xsl = ...
0
votes
1answer
54 views
Jsoup - read one by one
I'm starting to use Jsoup recently. I need list some elements in a HTML source. For example:
<table class="list">
<tr>
<td class="year" colspan="5">2012</td>
...
1
vote
1answer
97 views
lxml - ignore <br> tag in html
I wrote a tiny html-parser in Python using lxml. It's very useful, but I have a problem.
I have the following code:
tags = doc.xpath('//table//tr/td[@align="right"]/b')
for tag in tags:
...
0
votes
1answer
78 views
HTML DOC --logoimage
I am trying to put different header and footer images while creating a pdf doc. The problem is i can not insert two different images using --logoimage command. I have tried different ways but have ...
0
votes
2answers
77 views
Acute accents not recognized + Error when requesting hyperlink
I'm building a Spanish dictionary. I get the definitions from www.rae.es . There are two issues at the time:
the search engine doesn't work with acute accents ( á é í ó ú ). The output is an error ...
0
votes
0answers
88 views
Traversing a DOM Tree in Depth First Order using Jsoup
I want to extract text from an HTML page. For that I will have to traverse DOM tree of each element of the page in Depth First Order. For example consider the following HTML snippet
<span ...
0
votes
1answer
177 views
Convert lines in HTML to CSV
I have an html file with links in the format of
<a href="http://www.google.com>Date: 25.02.2013 10:30 Name: Google</a><br>
I'm trying to write a powershell script that will get ...
0
votes
1answer
82 views
Extracting texts from an element in a HTML page using Jsoup
I am extracting texts from the following html element
<span class="adr" style="float: none !important;">
<span class="street-address" style="float: none !important;">18, Jawaharlal ...


