Thread formatierte Ausgabe auf Konsole? (24 answers)
Opened by Math55 at 2004-05-12 15:28

renee
 2004-05-12 16:23
#82290 #82290
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Kannst Du wenigstens sagen, wie lang das längste Wort ist, sonst wirst Du es nie 100%ig machen können. Hier mal ein Ansatz...
Code: (dl )
1
2
3
4
5
6
7
8
my $i = 1; 
foreach my $word(@words){
$word = ' ' x (10 - length($word)).$word;
$i = sprintf("%5d",$i);
print $i," ",$word;
print $i % 3 == 0 ? "\n" : "\t";
$i++;
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread formatierte Ausgabe auf Konsole?