Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
perldoc perldsc – Zaid Jul 10 '12 at 14:26

closed as not a real question by Quentin, dgw, Borodin, Brad Gilbert, Graviton Jul 11 '12 at 1:44

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 1 down vote accepted

I'm only guessing what you try to do here. If I look at your code, you have probably a file with comma delimited records containing book titles?

If so, the snippet below would print all C books, which should be on the third field on your input line, according to your ($perlbook, $javabook, $cbook) = split (',');

...
my $booklistFile= 'file.txt';
open my $bookhandle, '<', $booklistFile or die "can not open $!";
my %bookHash = ();

while(my $line = <$bookhandle>) {
   chomp $line;
   my @record = split /\s*,\s*/, $line;
   push @{ $bookHash{PERL} }, $record[0];
   push @{ $bookHash{JAVA} }, $record[1];
   push @{ $bookHash{C}    }, $record[2];
}

# print all c books alphabetically sorted
print join "\n", sort @{ $bookHash{C} };
...

Now you get your C books in sorted order after the loop.

The loop-part can also be written without repetitions by using a hash-slice:

   ...
   ...
   my @record = split /\s*,\s*/, $line;
   for my $category ( @bookHash{'PERL', 'JAVA', 'C'} ) {
      push @$category, shift @record
   }
   ...
   ...

Regards,

rbo

share|improve this answer

Accumulate the output in a variable and print after the loop ends?

my $data;
while(<$booklist>){
    ($perlbook, $javabook, $cbook) = split (',');
    $bookHash{$cbook} = $cbook;
    $data = $bookHash{$cbook} ;
    $output .= $data;
}
print $output;
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.