19
votes
Hidden features of Perl?
The "for" statement can be used the same way "with" is used in Pascal:
for ($item)
{
s/&‎nbsp;/ /g;
s/<.*?>/ /g;
$_ = join(" ", split(" ", $_));
}
…
7
votes
Hidden features of Perl?
rename("$_.part", $_) for "data.txt";
renames data.txt.part to data.txt without having to repeat myself.
…
5
votes
Hidden features of Perl?
sub load_file
{
local(@ARGV, $/) = shift;
<>;
}
and a version that returns an array as appropriate:
sub load_file
{
local @ARGV = shift;
…
25
votes
Hidden features of Perl?
Add support for compressed files:
s/.*\.gz$/zcat "$_" \|/ for @ARGV;
(quotes around $_ necessary to handle filenames with spaces in)
Now the <> …
0
votes
Hidden features of Perl?
You might think you can do this to save memory:
@is_month{qw(jan feb mar apr may jun jul aug sep oct nov dec)} = undef;
print "It's a month" if exists $is_month{lc $mon};
…
1
vote
How can I refactor away this repeated series of “if” blocks?
If $col is in 24..27, then calculate the corresponding letter, and set the proper hash entry. Here are two ways to do it, depending on whether you want to save a few characters or save a few bytes …
