1
vote
How can I extract URLs from a web page in Perl?
HTML is a structured markup language that has to be parsed to extract its meaning without errors. The module Sherm listed will parse the HTML and extract the links for you. Ad hoc regular expressio …
6
votes
How can I obtain file meta information in Perl?
Have a look at the File::Magic module on the CPAN.
…
5
votes
How can I prevent database being written to again when the browser does a reload/back?
Using a POST request will cause the browser to try to prevent the user from submitting the same request again, but I'd recommend using session-based transaction tracking of some kind so that if the …
3
votes
Is there a cron-like service written in Perl?
I tried Schedule::Cron. It supports cron-like format but here the arguments to the subs must be simple scalars hence I ruled it out.
The Schedule::Cron document …
5
votes
What’s the best way to open and read a file in Perl?
The perlopentut man page covers most of this issue pretty well.
…
0
votes
What constitutes effective Perl training for non-Perl developers?
Based on my experience in the workplace I'd recommend beginning with Perl's documentation (already covered here) and spend some time showing the student how to test code on the command line. It's r …
5
votes
How does Perl decide to treat a scalar as a string or a number?
Data::Dumper's job is to serialize data and you can't tell much about what perl is doing internally with the data based on its output. The …
1
vote
How can I determine the local machine’s IP addresses from Perl?
I've had good success with IO::Interface on Linux and Solaris, and I think it even worked on AIX but I can't recall for sur …
1
vote
Why is $1 empty in my substitution?
Fix your pattern, as bart suggested, and consider using the "topic" variable $_ instead of explicitly assigning the data read from the filehandle to another variable.
#!/usr/bin/per …
0
votes
How can I prevent Windows from catching my Perl exceptions?
It's difficult to offer intelligent suggestions without seeing relevant bits of code. If you're getting a dialog box with an exception message the program is most likely using either the …
4
votes
How can I print source line number in Perl?
The __LINE__ literal is documented in the Special Literals section of the …
1
vote
How do I serve an image from the cgi directory under Tomcat?
Since the Bugzilla Guide includes configur …
0
votes
How can I efficiently manage Perl modules for code reuse?
If your modules include POD documentation and are installed under a common directory or set of directories, it should be relative …
4
votes
How can I set the line length limit in Text::Wrap?
Your code has a syntax error at line 4:
use Text::Wrap
should be:
use Text::Wrap; # note the semi-colon
I don't recommend the us …
5
votes
Why can’t I find Perl modules after upgrading to Intrepid Ibex Ubuntu?
The standard solution is to generate an "autobundle" with CPAN.pm before upgrading Perl. A search for autobundle yields l …
