This prints a single record, or do you want to print many records in a defined order ?
#!/usr/bin/perl -w
use strict;
# test HOH
my %test = (
'rec1' => {
'key'=>"rec1",
'a' =>"11" x 50,
'b' =>"1b1b1b",
'c' =>"c1c1c1c1c",
'z' =>"zz11zz11zz"
},
'rec2' => {
'key'=>"rec2",
'a' =>"22" x 40,
'b' =>"2b2b2b",
'c' =>"c2c2c2c2c",
'x' =>"xx22xx22xx"
}
);
my $obj = new mydata(\%test);
$obj->Print('rec2');
$obj->Print('rec1');
package mydata;
sub new {
my (undef,$self)=@_;
bless $self;
}
sub Print {
my ($self,$key) = @_;
my $record = $self->{$key};
my @parameters = ('key','a','z','c','b','x');
foreach my $parm (@parameters) {
next unless ($record->{$parm});
my $value = ($parm eq 'key') ? $key : $record->{$parm};
printf "%-16s: %s\n",$parm,substr($value,0,62) ;
printf "\t%s\n",substr($value,62) if length $value > 62;
}
}
poj
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.