adspace


How to read multi lines from a file in perl?

Answer Posted / Vibha Mishra

To read multiple lines from a file in Perl, you can use the `<FILEHANDLE>n` syntax. Here's an example:
```perl
open(my $fh, '<', 'filename') or die "Could not open file: $!";
while (my $line = <$fh>) {
print "$line";
}
close($fh);
```
This code opens the file 'filename' for reading, reads one line at a time into `$line`, and prints each line.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is perl? What is the basic command to print a string in perl?

944


There is no strict data types in perl unlike in other high level languages like Java so wouldn't that be a problem if a code in perl is to be a written by a big team of 20+ members ?"

2460


How to connect to SQL server through Perl?

1146


How do find the length of an array?

1215