Perl read-write file code instance _perl

Source: Internet
Author: User

#mode operand Create truncate
#read <
#write > Yes
#append >> Yes

Case 1:throw A exception if you cannot open the file:

Copy Code code as follows:

Use strict;
Use warnings;

My $filename = ' data.txt ';
Open (My $fh, ' <:encoding (UTF-8) ', $filename)
Or die "Could not open file ' $filename ' with the error $!";

while (My $row = < $fh >) {
Chomp $row;
print "$row \ n";
}
Close ($FH);
  

Case 2:give A warning if you cannot open the file, but keep running:

Copy Code code as follows:

Use strict;
Use warnings;

My $filename = ' data.txt ';
if (open (My $fh, ' <:encoding (UTF-8) ', $filename)) {
while (My $row = < $fh >) {
Chomp $row;
print "$row \ n";
}
Close ($FH);
} else {
Warn "Could not open file ' $filename ' $!";
}
  

Case 3:read one file into array

Copy Code code as follows:

Use strict;
Use warnings;

My $filename = ' data.txt ';
Open (Filein, "<", $filename)
Or die "Could not open file ' $filename ' with the error $!";
My @FileContents = <FILEIN>;
For my $l (@FileContents) {
print "$l \ n";
}
Close Filein;
  

End

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.