Tagged Questions
17
votes
11answers
2k views
Why a full stop, “.” and not a plus symbol, “+”, for string concatenation in PHP?
Why did the designers of PHP decide to use a full stop / period / "." as the string
concatenation operator rather than the more usual plus symbol "+" ?
Is there any advantage to it, or any reason at ...
15
votes
2answers
367 views
Is this a bug with Perl's glob prototype?
For no particular reason, I was playing around with the glob prototype (*), and seeing what it would do when the argument is a defined subroutine.
Given the following code:
sub test (*) {print ...
14
votes
8answers
732 views
Why do Perl control statements require braces?
This may look like the recent question that asked why Perl doesn't allow one-liners to be "unblocked," but I found the answers to that question unsatisfactory because they either referred to the ...
13
votes
4answers
741 views
Should I use Perl's conditional ? : operator as a switch / case statement or instead of if elsif?
Perl has a conditional operator that is the same a C's conditional operator.
To refresh, the conditional operator in C and in Perl is:
(test) ? (if test was true) : (if test was false)
and if ...
13
votes
7answers
922 views
What's broken about exceptions in Perl?
A discussion in another thread got me wondering: what do other programming languages' exception systems have that Perl's lacks?
Perl's built-in exceptions are a bit ad-hoc in that they were, like the ...
12
votes
6answers
707 views
Why is 'last' called 'last' in Perl?
What is the historical reason to that last is called that in Perl rather than break as it is called in C?
The design of Perl was influenced by C (in addition to awk, sed and sh - see man page below), ...
10
votes
2answers
161 views
In Perl, is there any harm in creating a subroutine with the same name as a package?
Say I have a package called My::Pkg, and that package has a ->new(...) class method to instantiate new objects:
package My::Pkg;
sub new {bless {@_[1..$#_]} => $_[0]}
Is there any harm in ...
10
votes
6answers
495 views
What's the difference between 'for' and 'foreach' in Perl?
I see these used interchangeably. What's the difference?
10
votes
2answers
698 views
Why is the 'Use of “shift” without parentheses is ambiguous' warning issued by Perl?
Does anyone know what parsing or precedence decisions resulted in the warning 'Use of "shift" without parentheses is ambiguous' being issued for code like:
shift . 'some string';
# and not
(shift) ...
9
votes
2answers
215 views
What is @$ref->{@keys} trying to access?
In a comment on an answer to a question about hash slices, someone wanted to know how to use arrow syntax to access a hash slice through a hash reference, thinking perhaps that
@$ref->{@keys}
...
9
votes
1answer
133 views
Why is this anon subroutine declaration parsed as an indirect object method in Perl?
In the following anonymous subroutine declaration, Perl seems to be parsing it as an indirect method call, rather than as a subroutine:
use 5.010;
use strict;
use warnings;
sub proxy {
my $new = ...
9
votes
8answers
414 views
Can you take a reference of a builtin function in Perl?
What syntax, if any, is able to take a reference of a builtin like shift?
$shift_ref = $your_magic_syntax_here;
The same way you could to a user defined sub:
sub test { ... }
$test_ref = ...
9
votes
8answers
1k views
How do you create objects in Perl?
Perl has OOP features, but they are somewhat rarely used. How do you create and use Perl objects with methods and properties?
8
votes
3answers
197 views
How do I declare the version number for a Perl module?
I thought I knew how to declare version numbers for modules. But after reading the article "$VERSION Confusion" at Modern Perl Books, a Modern Perl Blog; I'm now more confused than I started. ...
8
votes
3answers
490 views
Why does Perl's shift complain 'Type of arg 1 to shift must be array (not grep iterator).'?
I've got a data structure that is a hash that contains an array of hashes. I'd like to reach in there and pull out the first hash that matches a value I'm looking for. I tried this:
my $result = ...
7
votes
4answers
843 views
What characters are valid in hash keys?
As per subject: what are the characters that can be used in hash keys or, if it's shorter, which ones can't be used?
Also, are there any problems in using long hash keys (like full path names)?
6
votes
8answers
329 views
Is there a compact Perl operation to slice alternate elements from an array?
If I have an array myarray in Python, I can use the slice notation
myarray[0::2]
to select only the even-indexed elements. For example:
>>> ar = [ "zero", "one", "two", "three", "four", ...
6
votes
5answers
350 views
What is the Java equivalent of Perl's qq operator?
I have a very long string which includes many new lines ( it's a really long SQL statement ).
The SQL is easier to read when I break it up with newlines. But from time to time, I need to
copy the ...
6
votes
3answers
285 views
How do I call a function name that is stored in a hash in Perl?
I'm sure this is covered in the documentation somewhere but I have been unable to find it... I'm looking for the syntactic sugar that will make it possible to call a method on a class whose name is ...
5
votes
3answers
135 views
How do dollar and number sign together work in perl?
Today I have encountered a problem that required me to determine the maximum index of an array in perl. I used to do it this way:
my @array = (1, 2, 3);
print $array[@array - 1];
But today I have ...
5
votes
7answers
170 views
Is there simple syntax for declaring multiple keys with one value in perl?
Is there a simple way to declare a hash with multiple keys which all point to the same value in perl?
Here is something I'm similar to what I'm looking for (I don't actually know if this works or ...
5
votes
1answer
152 views
Difference between %hash and \%hash as a parameter?
I'm currently trying to learn Perl and I noticed that sometimes people "escape" variables when passing them as parameters. I first noticed this using SQL::Abstract:
my %hash = (
'foo' => 'bar'
);
...
5
votes
3answers
261 views
Nested dereferencing arrows in Perl: to omit or not to omit?
In Perl, when you have a nested data structure, it is permissible to omit de-referencing arrows to 2d and more level of nesting. In other words, the following two syntaxes are identical:
my ...
5
votes
2answers
922 views
What does colon mean in Perl?
What does the colon mean in the following Perl program?
MAIN: {
print "Hello\n";
}
5
votes
3answers
291 views
What is the difference in Perl when passing a variable in a regular expression between using $variable and ${variable}
I am reviewing some ClearCase triggers written in Perl. I have noticed that in some regular expressions, variables are passed either straighforwardly or with their names in curly brackets.
For ...
5
votes
4answers
238 views
How do I use a block as an 'or' clause instead of a simple die?
I want to check the results of an operation in the Net::FTP Perl module rather than die.
Typically you would do:
$ftp->put($my_file)
or die "Couldn't upload file";
But I want to do something ...
5
votes
7answers
1k views
What is a double underscore in Perl?
I'm trying to understand someone else's Perl code without knowing much Perl myself. I would appreciate your help.
I've encountered a Perl function along these lines:
...
4
votes
4answers
104 views
Perl shallow syntax check? ie. do not check syntax of imports
How can I perform a "shallow" syntax check on perl files. The standard perl -c is useful but it checks the syntax of imports. This is sometimes nice but not great when you work in a code repository ...
4
votes
1answer
182 views
What do @$ and $$ mean in Perl?
OK, so two questions on odd syntax. I am working on some older Perl code that needs modification, and I came across the following line:
@$tmp=split(/,/,$tmpVals);
I have no idea how to read this, ...
4
votes
1answer
98 views
What is “1;” in a Perl source? [closed]
Possible Duplicate:
What does 1; mean in Perl?
I'm new to Perl and learning how to build a class with Perl.
As from this example:
http://www.tutorialspoint.com/perl/perl_oo_perl.htm, I see ...
4
votes
3answers
173 views
What is the correct syntax to specify optional parameters?
I have a Perl script that can be called as
perl mysrc.pl -a=3 -b=4 -c=6
or as
perl mysrc.pl -t=15
Basically, (either provide value for t) OR (provide values for all of a, b and c). Atleast one ...
4
votes
5answers
385 views
What is the purpose of the parentheses in Perl's `foreach` statement?
I always wonder why I must write
foreach my $x (@arr)
instead of
foreach my $x @arr
What is the purpose of the parentheses here?
4
votes
1answer
105 views
Where is the documentation for the behavior of @array->[4] or %hash->{key} in Perl?
A recent question used a sigil invariant syntax %hash->{key} = 1; for hash access, which seems to work fine, but I would have thought it would be a syntax error.
It seems to work for arrays as ...
4
votes
2answers
214 views
When were non-capturing parentheses added to Perl's regular expressions?
I am having a hard time figuring out the earliest version of perl where non-capturing parentheses are supported in regex patterns?
Can I take this feature for granted for all versions of Perl5?
4
votes
5answers
844 views
What does it mean to pre-increment $#array?
I've come across the following line of code. It has issues:
it is intended to do the same as push
it ought to have used push
it's hard to read, understand
I've since changed it to use push
it does ...
3
votes
4answers
50 views
How to I use a class property/variable as a print filehandle in Perl?
I want to do the same thing as
open MYFILE, ">", "data.txt";
print MYFILE "Bob\n";
but instead in class variable like
sub _init_tmp_db
{
my ($self) = @_;
open $$self{tmp_db_fh}, ...
3
votes
3answers
143 views
Why isn't this Perl code an error
I'm writing a WxPerl program and instead of
$panel->SetDropTarget( MyTextDropTarget->new($panel) );
I wrote
$panel->SetDropTarget->( MyTextDropTarget->new($panel) );
and Perl ...
3
votes
3answers
156 views
Where is Perl's postfix `for` syntax documented?
I recently came across the following code snippet
$count_stuff{$_}++ for @stuff;
It's a pretty convenient way to use a hash to count occurences of strings in an array for example. I understand how ...
3
votes
3answers
131 views
What must I do to prevent Perl from complaining that “using a hash as a reference is deprecated”?
The code below is from an old Perl script.
print "%{@{$noss}[$i]}->{$sector} \n\n";
How should I rewrite the code above so that Perl does not complain that "using a hash as a reference is ...
3
votes
3answers
95 views
What are the differences between these “open” formats
I use this syntax to open my files, since I learned that some years ago in a training and the books I have do it the same way.
open( INPUTFILE, "< $input_file" ) || die "Can't open $input_file: ...
3
votes
3answers
896 views
Can't find string terminator “str” anywhere before EOF
Why I get this error?
use strict;
use warnings;
my $str = <<str;
88087 23/11/2010
35192 25/07/2010
B3J 5X9 17/08/2011
C8U 5L6 16/08/2011
F4Q 3B4 17/10/2010
D3X 9P4 11/05/2010
O7L ...
3
votes
4answers
135 views
How can I read from a method that returns a filehandle in Perl?
I have an object with a method that returns a filehandle, and I want to read from that handle. The following doesn't work, because the right angle bracket of the method call is interpreted as the ...
3
votes
2answers
236 views
What's wrong with this Perl boolean syntax?
I have hack I need to employ under these conditions:
-It's the last page of data.
-It's not the first page, either.
-There's not a page-size-even number of data items.
So I tried this code:
my ...
3
votes
3answers
333 views
What happens when you have a conditional operator and a postfix conditional in the same Perl statement?
Can anybody explain how this line works?
return $y < 0 ? - pip2 : pip2 if $x == 0;
if $y <0 it returns -pip2, but what it returns when $y >= 0 and $x != 0 ?
This line is from this ...
3
votes
6answers
249 views
Why can't I write @F[1..-1] to get elements 1..last?
In Perl, the array index -1 means the last element:
@F=(1,2,3);
print $F[-1]; # result: 3
You can also use the $# notation instead, here $#F:
@F=(1,2,3);
print $F[$#F]; # result: 3
So why don't ...
2
votes
5answers
108 views
Why use a “do {} if” block in Perl?
While browsing CPAN, I came across a block of code in this module that stumped me.
sub import {
for my $mod (keys %INC) {
do {
delete $INC{$mod};
$mod =~ s/\.pm$//; $mod =~ ...
2
votes
2answers
78 views
How to expand hash into argument list in function call in Perl?
How to expand hash into argument list in function call in Perl? I am searching Perl equivalent of Python's syntax : somefunc(**somedict) or somefunc(*somelist). Is that possible in Perl?
2
votes
2answers
201 views
Perl syntax error - elseif should be elsif at
Any ideas of what I need to change in this Perl code?
perl -wc yields:
elseif should be elsif at cgitelnet-mod.pl line 410.
syntax error at cgitelnet-mod.pl line 411, near ")
{"
syntax error at ...
2
votes
5answers
124 views
Printing an array within double quotes
my @a = (1,2,3,4,5);
print @a; #output: 12345
print "\n";
print "@a"; #output: 1 2 3 4 5
Printing an array by putting its name withing double quotes puts a space between each index's ...
2
votes
4answers
143 views
How do I update values in an array of hashes, which is in a hash of a hash in perl?
Seems very confusing I know. I'll try to "draw" this data structure:
hash-> key->( (key)->[(key,value),(key,value),(key,value),...],
(key,value))
So there is the first key, whose value ...