> If I can't get this to work, I'll be stuck using an if/elsif construct
a little syntactic sugar with an improvised in operator and given/when has no better readability anymore.¹
use strict;
use warnings;
sub in {
for my $val (@_) {
return 1 if $_ eq $val;
}
return;
}
sub test1 {
my ($var) = @_;
my $i;
for ($var) {
if ( in 1 ) { $i = "One" }
elsif ( in 2 ) { $i = "Two" }
elsif ( in 3,4,5 ) { $i = "Three, Four or Five" }
else { $i = "Other" }
}
print "$var is $i\n";
}
sub test2 {
my ($var) = @_;
my $i;
for ($var) {
if ( in 1 ) { $i = "One" ;next}
if ( in 2 ) { $i = "Two" ;next}
if ( in 3,4,5 ) { $i = "Three, Four or Five" ;next}
$i = "Other"
}
print "$var is $i\n";
}
test1($_) for 1..6;
test2($_) for 1..6;
¹) though I think it's still faster, it might be able to automatically optimize to hash-lookups
Cheers Rolf
( addicted to the Perl Programming Language)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.