Leser: 23
1 2 3 4
for my $zahl (0 .. $n) { my $zahlstr = sprintf "%05d", $zahl; # ... mache was mit $zahlstr }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#!/usr/bin/perl use warnings; use strict; use feature qw( say ); while(my $line = <DATA>) { chomp $line; my $zahl = sprintf("%05s", $line); say $zahl; } # while __DATA__ 506 200
2009-10-19T10:28:05 GwenDragon@havi
dein Code läuft aber erst ab Perl 5.10!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/usr/bin/perl use warnings; use strict; #use feature qw( say ); while(my $line = <DATA>) { chomp $line; my $zahl = sprintf("%05s", $line); #say $zahl; print $zahl."\n"; } # while __DATA__ 506 200