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

首頁 > 編程 > Perl > 正文

總結關于Perl文件操作

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

Perl使用最多的地方是文件處理,下面武林技術頻道小編總結關于Perl文件操作的事情,并且有一些具體的例子,通過下面的例子,來增強我們對Perl文件操作的理解。

刪除文件

使用unlinke函數,比如unlink $file, unlink $file1, $file2, $file3

打開文件

使用三參數的形式打開文件,這樣非常便于區分模式和文件名,perl 5.6之后的版本都支持這種方式。

?

#Open the 'txt' file for reading
open FH, '<', "$file_name.txt" or die "Error:$!n"; #Open the 'txt' file for writing. Creates the #file_name if it doesn't already exist #and will delete/overwrite a pre-existing file of the same name open FH, '>', "$file_name.txt" or die "Error:$!n";
#Open the 'txt' file for appending. Creates the #file_name if it doesn't already exist
open FH, '>>', "$file_name.txt" or die "Error:$!n";
#Open the 'txt' file for a 'read/write'. #Will not create the file if it doesn't #already exist and will not delete/overwrite #a pre-existing file of the same name
open FH, '+<', "$file_name.txt" or die "Error:$!n"; #Open the 'txt' file for a 'read/write'. Will create #the file if it doesn't already exist and will #delete/overwrite a pre-existing file #of the same name open FH, '+>', "$file_name.txt" or die "Error:$!n";
#Open the 'txt' file for a 'read/append'. Will create #the file if it doesn't already exist and will #not delete/overwrite a pre-existing file #of the same name
open FH, '+>>', "$file_name.txt" or die "Error:$!n";

?

一次性讀入整個文件

使用<>在標量環境下一次讀入一行,而在列表環境下一次讀入所有行,$/存儲的是行分隔符,默認是換行符,我們先將$/改掉,這樣就可 以在標量環境下一次讀入所有行了(這時已經沒有行的概念了,就是讀入整個文件),你也可以用列表讀入所有行然后再將所有行拼到一起,但那樣速度很慢。用完記得將$/改回來。

?

#!/usr/bin/perl
use strict ;
use warnings ;
sub test{
??? open FILE, '<', "d:/code/test.txt" or die $! ;
??? my $olds = $/ ;
??? $/ = undef ;
??? my $slurp =? ;
??? print $slurp, "n" ;
??? $/ = $olds ;
??? close FILE;
}
&test() ;


也可以使用local關鍵字來將$/設置為局部變量,這樣跳出作用域后,$/又恢復了原來的值。

?

?

?


#!/usr/bin/perl
use strict ;
use warnings ;
sub test{
??? local $/ ; #??? local $/ = undef ;
??? open FILE, '<', "d:/code/zdd.txt" or die $! ;
??? my $slurp =? ;
??? print $slurp, "n" ;
}
&test() ;


最好的方法是使用模塊,這樣比自己寫安全,File::Slurp、IO::All都可以的。

?

打開文件請用雙引號

open文件時,如果文件名有變量替換,最好用雙引號而不是單引號,因為單引號無視變量內插。

?

open FILE "<$file" or die $! ; #這樣可以。
open FILE '<$file' or die $! ; #這樣就不可以,因為$file不會被解釋成變量內插。同樣<也不會被解釋成輸入

?

文件句柄作參數

假設有一個函數test,它有一個參數,是某個文件句柄,那么該如何傳遞這個參數呢?

方法一,傳遞參數時,在句柄前面加*

?

sub main {
??? open FILE, '+<', 'test.data' or die $!;
??? &test(*FILE);
??? close FILE;
}


方法二,使用open my $FILE的形式打開文件

?

?

?


sub main {
??? open my $FILE, '+<', 'test.data' or die $!;
??? &test($FILE);
??? close $FILE;
}

今天是武林技術頻道小編給大家帶來的總結關于Perl文件操作,希望對你學習這方面知識有幫助,也希望大家繼續支持武林技術頻道!

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

圖片精選

主站蜘蛛池模板: 全州县| 扎兰屯市| 胶南市| 康保县| 博乐市| 屏山县| 陕西省| 安塞县| 永昌县| 怀仁县| 白朗县| 南陵县| 阳春市| 台南市| 琼海市| 长海县| 湖北省| 濮阳县| 巴楚县| 安康市| 莎车县| 北流市| 科技| 仁布县| 荥阳市| 宝山区| 阿图什市| 方山县| 武鸣县| 弥勒县| 农安县| 贵州省| 东丽区| 库尔勒市| 临安市| 越西县| 大连市| 崇阳县| 柞水县| 满城县| 万州区|