vote up 2 vote down star
1

I need to achieve the following in perl

printmsg(@val1, $msg1) if @val1;
printmsg(@val2, $msg2) if @val2;
printmsg(@val3, $msg3) if @val3;
printmsg(@val4, $msg4) if @val4;
printmsg(@val5, $msg5) if @val5;
printmsg(@val6, $msg6) if @val6;

So i wrote the following snippet

for(my $i=1; $i < 6; $i++ ) {
    printmsg(@val$i, $msg$i) if @val$i;
}

It doesn't work and breaks out with errors.

flag

4 Answers

vote up 15 vote down

Whenever you find yourself postfixing variable names with an integer index, realize that you should have used an array instead:

my @msgs = ('msg1', 'msg2', ..., 'msg6');
my @vals = ( [ @val1 ], [ @val2 ], ..., [ @val6 ] );

See also the FAQ How can I use a variable as a variable name?

You should read the entire FAQ list at least once a year.

Update: I purposefully left symbolic references out of my answer because they are unnecessary and likely very harmful in the context of your question. For more information, see Why it's stupid to 'use a variable as a variable name'?, part 2 and part 3 by mjd.

link|flag
1  
Or if val doesn't map numerically, use hashes: my %errors = ( foo => 'Uh oh!', bar => 'Even worse!', ); for my $error (keys %errors) { printmsg($errors{$error}); } – Oesor Oct 12 at 13:25
vote up 3 vote down

You can't just string variables together like that and get a resulting variable. You COULD evaluate the expression of $msg + i, but it's probably better if you make msg an array and just index: $msg[$i].

link|flag
vote up 0 vote down

Perl's symbolic references will let you get away with something like this:

for(my $i=1; $i < 6; $i++ ) {
    printmsg(@{'val'.$i}, ${'msg'.$i}) if @{'val'.$i};
}

Will not work under use strict;, obviously ;^)

Using a symbolic reference is not a good idea in your situation, however. See the FAQ How can I use a variable as a variable name? for more information.

link|flag
Do not use or recommend symbolic references unless there is a good reason to (the OP's is not). – Sinan Ünür Oct 11 at 11:17
But at the very least it should be mentioned that they exist, though you might want to add strong warnings. – Nathan Fellman Oct 11 at 11:27
@Nathan Fellman: In my post, I referred indirectly to their existence by including a link to the FAQ list where they are explained. – Sinan Ünür Oct 11 at 11:46
vote up -1 vote down

The arrays answer is the way to go, but you could do it the way you were thinking with the eval statement:

for(my $i=1; $i < 6; $i++ ) {
    eval "printmsg(\@val$i, \$msg$i) if \@val$i";
}

There are other pitfalls of using eval (inadvertently trapping runtime errors, for one), so read the perldoc -f eval page and then use arrays anyway.

link|flag
You could write it without eval() too, if you turn off strict and warnings. – Chris Lutz Oct 11 at 6:04
2  
"You could do X, if you turn off strict and warnings" tends to be one of the strongest arguments against doing X. – Dave Sherohman Oct 11 at 11:28
The only stronger argument against something being "use string eval". – jrockway Oct 12 at 19:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.