国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Perl > 正文

perl讀寫文件代碼實例

2020-02-23 19:44:37
字體:
來源:轉載
供稿:網友

Perl可以讓變量來操作文件,我們可以從文件中讀取或寫入數據,下面就讓武林技術頻道小編和大家說說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;

關于perl讀寫文件代碼實例的全部介紹武林技術頻道就給大家介紹到這里了,如果你覺得這篇文章可以幫助到大家,也可以分享給別人。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 福鼎市| 枣庄市| 金阳县| 突泉县| 桐城市| 周口市| 乡宁县| 沙坪坝区| 西华县| 梁山县| 义马市| 玉门市| 河东区| 麻江县| 宝坻区| 台山市| 许昌县| 临邑县| 正镶白旗| 公主岭市| 高清| 泸水县| 剑河县| 库伦旗| 惠州市| 武鸣县| 大埔县| 乳山市| 宁都县| 济源市| 延庆县| 海宁市| 柏乡县| 外汇| 旌德县| 连州市| 静安区| 司法| 邓州市| 深州市| 铜陵市|