6
votes
What is Perl’s equivalent to PHP’s print_r()?
As usually with Perl, you might prefer alternative solutions to the venerable Data::Dumper:
Data::Dump::Stream …
10
votes
Is Perl worth it?
What are your boss reasons for using Perl? You don't mention any, but I suppose he came up with a couple.
As for your concerns, there are a couple of IDEs available, EPIC was already menti …
8
votes
How can I prevent XML::XPath from fetching a DTD while processing an XML file?
XML::XPath is based on XML::Parser. There is an option in XML::Parser to NOT use LWP to resolve external entities (such as DTDs). And XML::XPath lets you pass an XML::Parser objetc, to use as the p …
7
votes
Do you prefer “if (var)” or “if (var != 0)”?
In Perl if (defined $var and $var ne '') and if( $var) are NOT equivalent. Try it with $var=0. Conversely if you test on $var!=0 all strings that …
4
votes
Are explicitly typed regexes allowed as keys in Perl YAML dump?
From man perldata:
Hashes are unordered collections of scalar values indexed by their associated string key.
The …
3
votes
How can I use awk or Perl to increment a number in a large xml file?
If you are absolutely sure that the format of your XML will never change, that the order of the attributes is fixed, that you can indeed get the regexp for the number right... then go for the non-p …
2
votes
How can I anonymise XML data for selected tags?
Using regexps is indeed dangerous, unless you know exactly the format of the file, it's easy to parse with regexps, and you are sure that it will not change in the future.
Otherwise you cou …
21
votes
How do I read two items at a time in a Perl foreach loop?
I believe the proper way to do this is to use natatime, from List::MoreUtils:
from the docs:
natatime BLOCK LIST
Creates an array iterator, for looping ov …
11
votes
Mixed language web dev environments
It seems that your problem is more legacy code and informal development methodology than the language per se. So if you already have Perl developers on staff, why not start modernizing your methods …
0
votes
How do I solve a set of constraints in Perl?
I am not sure you're going to find a simple answer to this (although I'd like to be proven wrong!).
It seems that your problem would be well suited for a …
2
votes
What do you keep in your Perl toolbox?
I use DBIx::Simple instead of plain DBI, the interface is, well, simpler and more regular. Also, of course, XML::Twig for XML processing. Then Getopt::Std for (simple) options, and YAML::Syck for t …
6
votes
How can I impress people with Perl’s capabilities?
I believe CPAN is pretty impressive in and of itself. the ease of installation of new modules is pretty nice, as is the fact that they are all there.
And then combining mod …
10
votes
How can I convert non-ASCII characters encoded in UTF8 to ASCII-equivalent in Perl?
I believe you could use Text::Unidecode for this, it is precisely what it tries to do.
…
0
votes
0
votes
How can I store a timestamp in a DBM database?
I would just store the epoch, it's easy to then display it with *localtime* or *strftime*.
If you really want to be able to browse the content of the DB without having to convert back the …
