主页 > 知识库 > perl读写文件代码实例

perl读写文件代码实例

热门标签:智能机器人电销神器 电话机器人哪里有卖 okcc外呼系统怎么调速度 热门电销机器人 惠州龙门400电话要怎么申请 万利达百货商场地图标注 河南虚拟外呼系统公司 外呼电信系统 上海企业外呼系统

#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

标签:绥化 周口 秦皇岛 绵阳 合肥 百色 淮安 周口

巨人网络通讯声明:本文标题《perl读写文件代码实例》,本文关键词  perl,读写,文件,代码,实例,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《perl读写文件代码实例》相关的同类信息!
  • 本页收集关于perl读写文件代码实例的相关信息资讯供网民参考!
  • 推荐文章