Thread strukturierung perl code
(7 answers)
Opened by cirruswolke at 2010-03-03 11:43
Der Code ist ja geschrieben wie für perl2 wir sind mittlerweile bei perl5
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 use strict; use warnings; #... sub x{ my $file=shift; my $y=''; open( my $in, '<', $file ) or die "Konnte $file nicht oeffnen! ($!)\n"; while (<$in>) { if (......){ $y=.... } close($in); return $y; } #... my $y=x($file); print '<html>'; print '<head>'; print '</head>'; print '<body>'; print $y; #< nicht '$y' print '</body>'; print '</html>'; |