3
votes
How do I read in the contents of a directory in Perl?
You could use DirHandle:
use DirHandle;
$d = new DirHandle ".";
if (defined $d) {
…
0
votes
What does Class::MethodMaker exactly do?
This is exactly what debugging tools are for :)
Have a look at the perldebug docs, particularly the section on profiling. …
6
votes
Reading data from a log file as a separate application is writing to it.
In Perl, the File::Tail module does exactly what you need.
…
0
votes
What does Class::MethodMaker exactly do?
Further to my previous answer, if you want to see exactly what's going on under the hood in detail, run your script in the debugger with trace mode on (perl -d filename.pl, then say "t" to trace, t …
0
votes
Perl Regex Match and Removal
Iterate over each line in the file, and skip the line if it matches the pattern:
my $fh = new FileHandle 'filename'
or die "Failed to open file - $!";
while (my $line = $fh->getline …
3
votes
Any suggestions for a Perl XML Writer?
If you want to take a data structure in Perl and turn it into XML, XML::Simple will do the job nicely.
At its simplest: …
0
votes
How to find the amount of physical memory occupied by a hash in Perl?
As others have said, caching is not a wheel you need to re-invent, there's plenty of simple caching solutions on CPAN which will do the job nicely for you.
…
9
votes
How do I read back in the output of Data::Dumper?
As others have already said, you'd probably be better off storing the data in a better serialisation format:
Storable …
1
vote
How can I suppressing Excel’s password prompt in Perl?
You may be better off using Spreadsheet::ParseExcel and …
9
votes
Why doesn’t this Perl regex work?
You can use \b for word boundaries and \w for word characters and also, the /i modifier for case insensitivity is cleaner than using [fF] etc.
Something like:
if ($st =~ m{\b fre …
5
votes
How can I define constants in a separate file in Perl?
This sounds like configuration settings, which would be better put in a config file that you parse with one of the various CPAN modules, for instance …
10
votes
Do you develop your Perl applications as CPAN modules?
Generally, yes, I'd say it's a good idea. Catalyst makes this easy, as the catalyst.pl helper script will set up a basic framework …
