I don't know why people want a verbatim 'switch' statement when you can use a for-statement.
#!/usr/bin/perl -w
use strict;
{
for (1..40) {
print;
($_ % 3 == 0) && print q! fizz!;
($_ % 5 == 0) && print q! buzz!;
($_ % 7 == 0) && print q! sausage!;
print "\n";
}
}
I generally use a for loop in conjunction with regular expression matches, like this trivial example:
#!/usr/bin/perl -w
use strict;
{
my @items = qw/The three principal virtues of a programmer are Laz
+iness, Impatience, and Hubris. See the Camel Book for why/;
for (@items) {
/^[A-Z]/ && do {
print "Found a proper noun? $_\n";
next;
};
/[,.]/ && do {
print "This word has punctuation: $_\n";
next;
};
print "This word seems uninteresting: $_\n";
}
}
It has a lot of flexibility where you can mix and match parts and get real nice uses out of it. I've always used it fully and got very good results --without waiting for a proper switch statement.
"The three principal virtues of a programmer are Laziness, Impatience, and Hubris. See the Camel Book for why." -- `man perl`
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.