Tagged Questions
0
votes
0answers
89 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 ...
1
vote
3answers
44 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, ...
3
votes
1answer
89 views
What is a good CPAN parser for HTML MS Excel files?
I know that regular (binary) Excel files can be processed via Spreadsheet::ParseExcel.
However, I have a file that is HTML formatted:
<html xmlns:x="urn:schemas-microsoft-com:office:excel">
...
0
votes
1answer
104 views
regex to extract url from google search
I need extract a url from a google search , i try this:
if($google =~ /<h3 class="r"><a href="(.*)"/i){
print "$1\n$2\n$3\n$4\n$5\n$6\n$7\n$8\n$9\n$10";
}
But is this wrong , please help ...
2
votes
2answers
105 views
Perl's HTML::Element - dumping just the descendants as HTML
I'm having trouble trying to output the contents of a matched node that I'm parsing:
<div class="description">some text <br/>more text<br/></div>
I'm using ...
0
votes
3answers
115 views
Print in multiple HTML files
I'm relatively new to PERL. I have a list of URLs from which I want to extract only the text and print it in different files. Here is a sample of my code :
#!/usr/bin/perl -w
use strict;
...
0
votes
1answer
80 views
How to parse HTML which does not have id or class information?
If I have HTML of the form
<ol>
<li>Cheeses
<ol>
<li>Red Leicester</li>
<li>Cheddar</li>
</ol>
...
0
votes
2answers
210 views
How to extract a column of a table from html page using perl modules?
I have the following html code of a part of a webpage.
<h2 id="failed_process">Failed Process</h2>
<table border="1">
<thead>
<tr>
<th>
...
0
votes
1answer
416 views
Getting html content between specific <div> tag only
I wrote the following code to scrape text content between <div id=aaa-bbb> and the next </div> tag, but it only prints out the whole HTML source.
use LWP::Simple;
$url = ...
1
vote
2answers
145 views
How do I parse HTML with Perl?
I'm new to programming and learning Perl as well.
Here is my question: How can I parse the data below in Perl using Perl modules?
<h4>This is the line</h4>
abc : 130.65 TB<br>
dif ...
-1
votes
4answers
121 views
Extract section contents from HTML using perl
I want to get all contents of a section tag in an HTML string using perl. I'm using the following line of code, but it doesn't seem to work:
$article_content =~ ...
2
votes
2answers
154 views
Parsing HTML to get elements between two set elements
I am trying to parse a page like this one and I simply want to get the paragraphs after the header, the introduction I guess.
I want all the content (inclduing the paragraph tags) between <table ...
1
vote
2answers
83 views
perl regex mutiple groups
I am trying to do a screen scrape in perl and have it down to a array of table elements.
the string:
<tr>
<td>10:11:00</td>
<td><a ...
-1
votes
2answers
257 views
Extracting Text from HTML using HTML::TreeBuilder
Hi i'm using HTML::TreeBuilder / HTML::Element to clean up some bad HTML produced by programs such as Microsoft Word.
Given the snippet of bad HTML in the example I need to extract the text between ...
1
vote
3answers
98 views
How can I extract the text from links on an HTML page in Perl?
I am not an expert in Perl but I have written a Perl script to parse an HTML page and filter by all href tags:
The output are as shown below:
href="?Name">Name</a>
href="?Desc">Hourly ...
2
votes
3answers
347 views
Get contents from HTML tag using MyParser in Perl
I have a html as the following:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html ...
-6
votes
3answers
217 views
Regex to parse a multiline HTML
am trying to parse a multi-line html file using regex.
HTML code:
<td>Details</td></tr>
<tr class=d1>
<td>uss_vod_translator</td>
Regex Expression:
if ($line ...
1
vote
2answers
208 views
HTML parsing by perl script
I am trying to parse an HTML file through my perl script. I am using a module called HTML::TreeBuilder.
Here is what I have so far:
use HTML::TreeBuilder;
my $tree = HTML::TreeBuilder->new;
...
0
votes
1answer
137 views
HTML parser by perl script
#!/usr/bin/perl
use HTML::TreeBuilder;
my $tree = HTML::TreeBuilder->new;
$tree->parse_file("sample.html");
foreach my $anchor ($tree->find("p")) {
print $anchor->as_text, "\n";
}
...
2
votes
3answers
366 views
advanced perl syntax - Mojo::DOM
I am trying to understand some advanced (for me) perl syntax for html parsing using DOM following this tutorial:
say "div days:";
say $_->text for $dom->find('div.days')->each;
say "\nspan ...
1
vote
3answers
190 views
Using Perl, how can I remove the contents of a specific tag in an HTML document?
I'm new to Perl. I have to find and replace in multiple line.
$content =~ s/<picture[^>]*>(.*?)<\/picture>//gis;
I tried these code. All the tags are replaced in my file. What is my ...
7
votes
3answers
498 views
How to move up a node in html tree and extract the link?
I know my question title is not that descriptive but let me explain here.
I am trying to parse the given html document using HTML::TreeBuilder. Now in this html document values 5,1,ABC,DEF are to be ...
1
vote
1answer
178 views
Perl Error “Can't call method ”get_tag“ on an undefined value at Parser.pl line 6”
I wrote a simple perl script but i am getting this runtime error:
Can't call method "get_tag" on an undefined value at Parser.pl line 6
Below is my code:
#!usr/bin/perl
use HTML::TokeParser
my ...
0
votes
2answers
154 views
After HTML parsing (using HTML::TreeBuilder) image get corrupted
im building a small proxy for my own use with LWP::UserAgent and then i'm parsing the HTML using HTML::TreeBuilder
depending on the page i am, my code loads a small module that get info / change ...
5
votes
4answers
368 views
How to parse invalid HTML with Perl?
I maintain a database of articles with HTML formatting. Unfortunately the editors who wrote articles didn't know proper HTML, so they often have written stuff like:
<div ...
0
votes
4answers
267 views
In Perl, how can I replace relative URLs in src attributes of img tags with absolute URLs?
I want to find and replace (from an html page) all occurrences of src attributes in img tags. E.g., take
<img width="25" height="13" border="0" src="/images/flags/de.png">
and change the src ...
0
votes
1answer
346 views
Perl HTML Parser for tables
There are so many different parsers for HTML that it is hard to choose the rigth one.
My task is to read url and to find a <table> with specific id and then parse all <tr> rows of this ...
2
votes
4answers
135 views
How can I selectively modify the src attributes of script tags in an HTML document using Perl?
I need to write a regular expression in Perl that will prefix all srcs with [perl]texthere[/perl], like such:
<script src="[perl]texthere[/perl]/text"></script>
Any help? Thanks!
1
vote
1answer
220 views
HTML::TagFilter remove div based on class
I'm trying to use a perl script to pull content from static html files on a server. I'd like to pull the content of a specific div. I know the div by its class name ("getme").
I can get to the div ...
1
vote
2answers
329 views
Use TokeParser in perl to extract a value from a self contained tag
What I'm trying to do sounds really easy but somehow I'm struggling with it for several hours now, so please point me in the right direction:
I've got some html that looks like this:
<img ...
-1
votes
1answer
192 views
Right way to parse this HTML page?
I'm trying to parse some parts of an HTML page but I have problems with my regular expression.
My code looks like this:
... Download page using wget and some other stuff ...
$PAGE_REGEXP = "\<div ...
0
votes
1answer
92 views
How do I access the contents of a specific cell in this messy HTML table using Perl?
I have the following messy HTML table which is being used to present a list of records.
<table><tbody> ...
1
vote
2answers
98 views
Search, Create and Move in Perl
I have a directory of about 800 html files. I am trying to search each file and return text between tags. Then I want to create a directory with that text and move (or copy) the files there. This ...
-6
votes
1answer
552 views
Perl script that extracts data from HTML table [closed]
I need a Perl script to parse a simple HTML table with 2 columns.
The table includes: column 1 Name of the user and column 2 the time that he/she has been online.
I need to get the data as: Name ...
0
votes
1answer
399 views
Extracting text from webpage, processing with Perl/Python, then rebuilding the page with links added
I'm building a web app that processes the text in a web page, adds links to certain entities, then re-displays the page exactly as it was, but with some links added. My server-side code is in Perl and ...
0
votes
1answer
570 views
Using Perl to get information between <div> tags on web page
I'm trying to process a series of web pages which contain information I need inside a nested series of tags. Fortunately they have labeled the tags I need with 'id' fields. I've been over several ...
0
votes
1answer
169 views
Java Equivalent for HTML::TableExtract
Can anyone please suggest a library for Java which is similar to perl module HTML::TableExtract. The one of the noted feature of this module is it can helps the user to identify the nested tables ...
0
votes
2answers
219 views
good practice parsing specific html table with urls in perl
Given a html with table data like the following...
<tr class=nbg1><td><A ...
2
votes
1answer
404 views
How to get all links in a webpage using perl?
I want to get all links (<a href='http://.*') from a web page using perl, which module should I use? Or just use regex myself?
2
votes
1answer
397 views
How to rearrange html content with HTML::Treebuilder
I'm writing a script to rearrange html content and I'm stuck with 2 problems. I have this html structure, which is movie titles and release years with thumbnails grouped in 5 columns. I want to ...
2
votes
1answer
154 views
Perl HTML::Strip whitelist
Is there a way to give a whitelist to the module that it would preserve certain tags?
Now markup as below
<div><b>test</b></div>
Stripped with this code
my $hs = ...
0
votes
1answer
370 views
How to keep data marked as UTF-8 after parsing with HTML::Tree?
I wrote a script, where i slurp in UTF-8 encoded HTML-file and then parse it to tree with HTML::Tree. Problem is that after parsing the strings are not marked as UTF-8 anymore.
As _utf8_on() is not ...
2
votes
2answers
1k views
Perl HTML::parser error; Undefined subroutine &main::1
I am getting the error
Undefined subroutine &main::1 called at /usr/local/lib/perl/5.10.0/HTML/Parser.pm line 102.
Here is my code
#open (IN, "<", "foo.html") or die "can't open source ...
0
votes
1answer
102 views
My TOC script is not generating Strict html standard code
I'd written a Perl script to generate a table of contents from HTML pages which is working fine (and generating valid HTML) except for that the Perl output is removing closing tags for some elements ...
1
vote
3answers
533 views
Parse html using Perl
I have the following HTML-
<div>
<strong>Date: </strong>
19 July 2011
</div>
I have been using HTML::TreeBuilder to parse out particular parts of html that are ...
0
votes
1answer
1k views
perl HTML::TableExtract get stripped text
My tables' rows in HTML are as follows,
<TR bgcolor="#FFFFFF" onmouseover="this.bgColor='#DBE9FF';" onmouseout="this.bgColor='#FFFFFF';">
<TD class="dlfont">07/01/2011 10:33 AM ...
0
votes
1answer
543 views
HTML::TokeParser finding tags _until_ a certain tag
I need to read an html file and find a certain paragraph tag, with specific text in it. Once I find that tag, I then want the text from all the next tags until I find a table tag
Example:
...
3
votes
6answers
1k views
improving LWP::Simple perl performance
Alas, I have yet another question:
I have been tasked with reading a webpage and extracting links from that page (easy stuff with HTML::TokeParser). He (my boss) then insists that I read from these ...
3
votes
3answers
571 views
how to extract specific information from html webpage using perl
if the information of "XYZ 81.6 (-0.1)" needed to be extracted from one html webpage, how can it be done with perl? Many thanks.
<table border="0" width="100%">
<caption ...
1
vote
3answers
136 views
perl regex help — hopefully an easy question
ashamed as I am to admit it, I'm terrible with regex... so here I am to ask your help :)
i have an html file that looks sorta like this:
<table>
<tr>
<td sadf="a">
...