Here are some experiments with format. It behaves
in a rather weird fashion when eval'ed. It seems to replace
all the 'template variables' in the format by their actual
values when the evaluation is called. The (kludgy) workaround
I found is to eval on each iteration of the for $i(0..9)
The use of the eval is to be able to get the longest name
of the list and construct the format according to it
my $i;
my $format = "format STDOUT =\n"
. '@>>> '
. '@' . '<' x ($longest + 3)
. " @<<<<\n"
. '$i, $results[$i]->[0], $results[$i]->[1]'
. "\n.\n";
print $format;
eval $format;
die $@ if $@;
for $i (0..9) {
write;
}
(I think that there should be a better way to do the above though)
The most straightforward approach of using format in this script
would be the following:
my $i;
format STDOUT_TOP=
Rank Name Posts
--------------------------------
.
format STDOUT =
@||| @<<<<<<<<<<<<<<<<<<<< @<<<<
$i, $results[$i]->[0], $results[$i]->[1]
.
for $i (0..9) {
write;
}
But in a nicer and more obfuscation prone style, one could
prefer
my $picture = '@||| @' . '<' x $longest . "@<<<<\n";
for my $i (0..9) {
formline($picture, $i, $results[$i]->[0], $results[$i]->[1]);
}
print $^A; # use English; print $ACCUMULATOR;
Eeek!
Cheers, briac
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.
|
|