perl读写文件代码实例
#mode operand create truncate
#read <
#write > yes yes
#append >> yes
Case 1: Throw an exception if you cannot open the file:
代码如下:
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:
代码如下:
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
代码如下:
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
相关推荐
边城客栈学无止境 2020-07-05
Walter的学习笔记 2020-07-04
A宇 2020-06-14
边城客栈学无止境 2020-06-10
邓博学习笔记 2020-06-03
davidliu00 2020-05-26
ShiShuo 2020-05-16
Aggressivesnail 2020-05-10
ShiShuo 2020-04-26
hanxingwang00 2020-04-22
davidliu00 2020-03-06
ShiShuo 2020-03-06
ShiShuo 2020-03-05
Aggressivesnail 2020-02-28
aaLiweipeng 2020-02-01
amberom 2020-01-16
Walter的学习笔记 2020-01-06