Thread zentrierte Darstellung mit printf möglich? (20 answers)
Opened by Duff at 2007-09-19 13:41

renee
 2007-09-19 13:51
#99657 #99657
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
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/

View full thread zentrierte Darstellung mit printf möglich?