Thread zentrierte Darstellung mit printf möglich?
(20 answers)
Opened by Duff at 2007-09-19 13:41
So kannst Du es machen:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 #!/usr/bin/perl use strict; use warnings; chomp( my $text = <STDIN> ); my $width = 30; my ($rand) = int( ($width - length $text) / 2 ); my $format = ">>%*s%s%*s<<"; print sprintf $format, $rand, ' ', $text, ($width - length($text) - $rand), ' '; 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/ |