0
votes
How can I start an interactive console for Perl?
Also look for ptkdb on CPAN:
http://search.cpan.org/search?query=ptkdb&mode=all
…
0
votes
Perl: why is the if statement slower than “and”?
It also could depend on the version of Perl. Which you haven't mentioned. And the difference is not enough to worry about anyway. So use whatever makes more sense.
…
9
votes
Presentations on switching from Perl to Python
There's no benefits to rewriting a ton of code from one similar language to another when both languages have similar capabilities. Perhaps you should focus on writing better perl code. Maybe learn …
3
votes
What’s the point of Perl’s map?
You use map to transform a list and assign the results to another list, grep to filter a list and assign the results to another list. The "other" list can be the same variable as the list you are t …
0
votes
Truncate stdin line length?
A Korn shell solution (truncating to 70 chars - easy to parameterize though):
typeset -L70 line
while read line
do
print $line
done
…
2
votes
Is there some way to make variables like $a and $b in regard to strict?
In Perl 5.6 and later, you can use our:
our ($k, $v);
Or you can stick with the older "use vars":
use vars qw($k $v);
Or you migh …
7
votes
Perl Challenge - Directory Iterator
Others have mentioned File::Find, which is the way I'd go, but you asked for an iterator, which File::Find isn't (nor is File::Find::Rule). You might want to look at …
4
votes
16
votes
Is there a Perl-compatible regular expression to trim whitespace from both sides of a string?
$x =~ s/^\s+|\s+$//g;
or
s/^\s+//, s/\s+$// for $x;
…
9
votes
Should I turn on Perl warnings with the command-line switch or pragma?
"-w" is older and used to be the only way to turn warnings on (actually "-w" just enables the global $^W variable). "use warnings;" is now preferable (as of version 5.6.0 and later) because (as alr …
4
votes
What is the best way in Perl to copy files into a yet-to-be-created directory tree?
File::Copy::Recursive::fcopy() is non-core but combines the File::Path::mkpath() and File::Copy::copy() solution in …
5
votes
How do I reference a scalar in a hash reference in Perl?
\$bar->{baz}
should work.
E.g.:
my $foo;
$foo->{bar} = 123;
my $bar = \$foo->{bar};
$$bar = 456;
print "$foo->{bar}\n"; # prints " …
7
votes
How do I read fixed-length records in Perl?
Update: For the definitive answer, see Jonathan Leffler's answer below.
I wouldn't use this for just two fields (I'd use …
3
votes
How do I know how many rows a Perl DBI query returns?
Why don't you just "select count(*) ..."??
my ($got_id) = $dbh->selectrow_array("SELECT count(*) from FROM bounce_info WHERE bi_exim_id = '$exid'");
Or to thwar …
2
votes
How can I get a list of indices on a SQL table using Perl?
There's a statistics_info() method in DBI, but unfortunately, the only DBD I've seen it implemented in so far is DBD::ODBC . So if you use ODBC (update: or PostgreSQL!) you're in luck. Otherwise sp …
