I am trying to read a file and then want to print the output outside the while loop. Is there a way you can do that?
This is what I am doing:
my $booklistFile= file.txt;
my $perlbook;
my $javabook;
my $cbook;
my $data;
open my $booklist, "<", $booklistFile or die "can not open the file";
my %bookHash = ();
while(<$booklist>)
{
($perlbook, $javabook, $cbook) = split (',');
$bookHash{$cbook} = $cbook;
$data = $bookHash{$cbook} ;
print $data;
}
This would print the $data inside the while loop. Is there a way I can print $data outside the while loop?
perldoc perldsc– Zaid Jul 10 '12 at 14:26