Tagged Questions
9
votes
8answers
7k views
How can I extract URL and link text from HTML in Perl?
I previously asked how to do this in Groovy. However, now I'm rewriting my app in Perl because of all the CPAN libraries.
If the page contained these links:
<a ...
5
votes
3answers
177 views
What do I gain by filtering URLs through Perl's URI module?
Do I gain something when I transform my $url like this: $url = URI->new( $url )?
#!/usr/bin/env perl
use warnings; use strict;
use 5.012;
use URI;
use XML::LibXML;
my $url = ...
5
votes
5answers
1k views
What character replacements should be performed to make base 64 encoding URL safe?
In looking at URL safe base 64 encoding, I've found it to be a very non-standard thing. Despite the copious number of built in functions that PHP has, there isn't one for URL safe base 64 encoding. ...
4
votes
5answers
2k views
How can I extract URLs from plain text with Perl?
How can I use Perl regexps to extract all URLs of a specific domain (with possibly variable subdomains) with a specific extension from plain text. I have tried:
my $stuff = 'omg ...
3
votes
2answers
163 views
parsing mysql:/// sqlite:/// URLs
We've got this little regexp in a module to parse URLs like the following:
if( my ($conn, $driver, $user, $pass, $host, $port, $dbname, $table_name, $tparam_name, $tparam_value, $conn_param_string) =
...
3
votes
2answers
286 views
URL Percent Encoding (URI Escaping) in Perl
Can anyone tell me where I can find encoding functions like
encode("ram@yahoo.com") ==> ram%40yahoo.com
and decode("ram%40yahoo.com") ==> ram@yahoo.com
Thanks
3
votes
4answers
200 views
How can I extract just the scheme, host, and port from a URL in Perl?
I need to be able to extract just the scheme, host, and port from a URL.
So if my url in the browser is: http://www.example.com:80/something.pl
I need to be able to get the: http://www.example.com:80
...
2
votes
1answer
328 views
How to get current url using Selenium Perl API
I am just trying to get the current absolute url of the page. Here is the snippet of the code
my $url_str = "BEFORE";
$sel->storeLocation("url_str");
$sel->comment(URL is $url);
Send command: ...
2
votes
4answers
116 views
Replacing URLs in Strings - Perl
I have a bunch of strings that have URLs in them and I need to remove the URL and replace it with a different one. The only way I can think of to do it is with split:
($start, $url, $end) = ...
2
votes
1answer
316 views
Batch Conversion Domain to IP
I have a list of domains I would like to convert to their respective IP. Let's say:
domain1.com
domain2.com
domain3.com
I would like to get the IP of each of these domains, such as:
domain1.com -> ...
2
votes
3answers
348 views
How can I extract URLs from plain text in Perl?
I've seen some posts like this, but not exactly what I want to do.
How can I extract and delete URL links, and then remove them from plain text.
Example:
"Hello!!, I love http://www.google.es".
I ...
2
votes
5answers
171 views
How can I format URLs nicely in Perl?
I have a bunch of URLs that I have to turn into links:
for my $url (@url_list) {
say "<a href='$url'>$url</a>";
}
Is there a module for making the visible URL nicer? A bit like ...
2
votes
2answers
395 views
How can I find the final URL after all redirections in Perl?
Lets say I have "http://www.ritzcarlton.com" and that redirects me to "http://www.ritzcarlton.com/en/Default.htm". Is there a way in Perl to find the end url after all the redirects?
2
votes
1answer
230 views
How can I convert URLs in text to HTML links?
I'm writing a forum-type discussion board in Perl and would like to change automatically http://www.google.com to be an HTML link. This should also be safe, and err on the side of security. Is there ...
1
vote
2answers
90 views
How to get parameter come after '#' in Perl CGI?
How can we fetch the value of folders from below mentioned url:
http://my.indiamart.com/cgi/my-enquiries.mp#folders=1
I've tried CGI object, %ENV variable and so many things, but still not been ...
1
vote
1answer
98 views
Extraction of TLD from urls and sorting domains and subdomains for each TLD file
I have a list of million urls.
I need to extract the TLD for each url and create multiple files for each TLD.
For example collect all urls with .com as tld and dump that in 1 file, another file for ...
1
vote
3answers
65 views
Get Regexp::Common URI working
im using pQuery to get all TD cells from a table checking if it contains a valid URL.
pQuery is working fine giving me the content of all TD cells.
But my Regexp::Common check which i have from ...
1
vote
2answers
89 views
Odd Perl Regex Behavior with Parens
I'm pulling in some Wikipedia markup and I'm wanting to match the URLs in relative (on Wikipedia) links. I don't want to match any URL containing a colon (not counting the protocol colon), to avoid ...
1
vote
1answer
285 views
Disable URL encoding inside an HTTP request
I'm writing a small perl tool which should help me to speed up some processes during a blind SQL injection attack (it's an ethical tool. it's my job).
My script manages HTTP requests already ...
1
vote
3answers
455 views
Perl convert url string to link
I am looking for a way to find a url in a string and convert it to a link.
The url may be anywhere in the string (beginning, middle, or the end).
Regex is preferred but CPAN modules are welcome.
1
vote
2answers
169 views
How can I fetch the same URL with different query string with Perl's LWP::UserAgent?
I looked up articles about using LWP however I am still lost! On this site we find a list of many schools; see the overview-page and follow some of the links and get some result pages:
I want to ...
1
vote
1answer
185 views
How can I find the full URL from a relative URL in Perl?
I'm new to perl but was wondering if anyone know of a script that was similar to the following PHP version which works great!
private function resolve_href ( $base, $href ) {
if (!$href)
...
1
vote
1answer
158 views
Perl uri_escape_utf8 inconsistent behaviour (or programmer error!)
I'm trying to implement some URI encoding of filenames in my urls, but am experiencing some strange problems with uri_escape and uri_escape_utf8, where it appears to be behaving inconsistently.
Using ...
1
vote
4answers
569 views
How can I validate a website URL in Perl?
I need a regular expression for validating the website URL using Perl.
1
vote
4answers
557 views
How can I extract URLs from plain text with Perl?
I need the Perl regex to parse plain text input and convert all links to valid HTML HREF links. I've tried 10 different versions I found on the web but none of them seen to work correctly. I also ...
1
vote
5answers
142 views
How can I rewrite URLs except those of a particular domain?
Can you please help me to make perl regexp to replace
(http://.+) to http://www.my1.com/redir?$1
but do nothing for urls like http://www.my1.com/ or http://my1.com/
For instance I need to replace
...
1
vote
3answers
488 views
How can I extract HTML img tags wrapped in anchors in Perl?
I am working on parsing HTML obtain all the hrefs that match a particular url (let's call it "target url") and then get the anchor text. I have tried LinkExtractor, TokenParser, Mechanize, TreeBuilder ...
1
vote
3answers
166 views
How do I create an absolute URL from two components, in Perl?
Suppose I have:
my $a = "http://site.com";
my $part = "index.html";
my $full = join($a,$part);
print $full;
>> http://site.com/index.html
What do I have to use as join, in order to get my ...
0
votes
2answers
83 views
How do I launch the default web browser in Perl on any operating system?
I want to open a URL, such as http://www.example.com/, at the end of a Perl script. I don't want to access it with WWW::Mechanize but actually show the web page to the user in a graphical web browser.
...
0
votes
1answer
85 views
Configure Apache2 to allow clients to run Perl Scripts in cgi-bin
I have two perl scripts; one acts like the client (and queries); the other acts like the server and returns information. On an Apache server (not my own) they work perfectly.
However, on my ...
0
votes
1answer
44 views
Smart URL Synchronization/Download Engine available open source?
I am wondering if anybody is aware of an open-source URL Synchronization/Download engine or if I will end up writing my own one.
Expected functionality:
- Provide a plain list of HTTP Urls to be ...
0
votes
1answer
57 views
How to Regex Multiple URLs From Same Variable In Perl
I'm trying to search a field in a database to extract URLs. Sometimes there will be more than 1 URL in a field and I would like to extract those in to separate variables (or an array).
I know my ...
0
votes
3answers
98 views
how can I get a unknown length string from a webpage
I need to get a string in perl whose length is varying each day. Look at the URL content below
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
...
0
votes
1answer
47 views
Perl encodings question
I need to get a string from <STDIN>, written in latin and russian mixed encodings, and convert it to some url:
$search_url = "http://searchengine.com/search?text=" . uri_escape($query);
But ...
0
votes
2answers
146 views
How do I pass a variable into a URL in a Perl script?
How do I pass a variable into a URL in a Perl script?
I am trying to pass the variables in an array to url. For some reason it is not working. I am not sure what I am doing wrong. The code roughly ...
0
votes
2answers
201 views
How can I map URLs to filenames with perl?
In a simple webapp I need to map URLs to filenames or filepaths.
This app has a requirement that it can depend only on modules in the core Perl ditribution (5.6.0 and later).
The problem is that ...
0
votes
2answers
125 views
How do I linkify text in Perl?
I have some text I want to linkify, which I can reasonably do with a regex (search for http/https or www) but I'm worried about XSS complications. What's a safe way to do this in Perl?
0
votes
4answers
284 views
How can I change the hostname in a URL using Perl?
I have some URLs like http://anytext.a.abs.com
In these, 'anytext' is the data that is dynamic. Rest of the URL will remain same in every case.
I'm using the following code:
$url = ...
0
votes
5answers
654 views
How can I detect the file type of image at a URL?
How to find the image file type in Perl form website URL?
For example,
$image_name = "logo";
$image_path = "http://stackoverflow.com/content/img/so/".$image_name
From this information how to find ...
0
votes
4answers
763 views
How can I remove part of an URL using Perl?
How can I remove a substring from a string using Perl? For example, $URL contains http://xyz.com/Main#abcd.aspx
And I want to check and strip out 'Main#' from $URL Can anyone help me out?
Well ...
-5
votes
1answer
74 views
Perl CGI Redirect URL [closed]
I start with http://domain.com/cgi-bin/script.pl. According to the condition evaluated in the script I would like one the URLs 1 or 2 to be loaded automatically without any user intervention.How can I ...