婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > perl幾個文件操作例子

perl幾個文件操作例子

熱門標簽:萬利達百貨商場地圖標注 上海企業(yè)外呼系統(tǒng) 智能機器人電銷神器 惠州龍門400電話要怎么申請 okcc外呼系統(tǒng)怎么調(diào)速度 熱門電銷機器人 外呼電信系統(tǒng) 電話機器人哪里有賣 河南虛擬外呼系統(tǒng)公司

perl用的最多的地方就算是文件處理了,下面我就總結了一下perl文件操作的一些東西,并且有具體的例子,通過下面的例子,加強我們對perl文件操作的理解。

刪除文件

使用unlinke函數(shù),比如unlink $file, unlink $file1, $file2, $file3

打開文件

使用三參數(shù)的形式打開文件,這樣非常便于區(qū)分模式和文件名,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";

一次性讀入整個文件

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

復制代碼 代碼如下:

#!/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() ;

最好的方法是使用模塊,這樣比自己寫安全,F(xiàn)ile::Slurp、IO::All都可以的。

打開文件請用雙引號

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

復制代碼 代碼如下:

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

文件句柄作參數(shù)

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

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

復制代碼 代碼如下:

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文件操作的一些例子分享
  • perl 文件操作總結

標簽:百色 合肥 周口 淮安 綏化 綿陽 秦皇島 周口

巨人網(wǎng)絡通訊聲明:本文標題《perl幾個文件操作例子》,本文關鍵詞  perl,幾個,文件,操作,例子,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《perl幾個文件操作例子》相關的同類信息!
  • 本頁收集關于perl幾個文件操作例子的相關信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 景德镇市| 江达县| 南和县| 南郑县| 潢川县| 于都县| 禄劝| 广平县| 洛南县| 兴山县| 益阳市| 长丰县| 当雄县| 砚山县| 五指山市| 彝良县| 合川市| 怀安县| 平罗县| 靖宇县| 双城市| 开鲁县| 垦利县| 三都| 社会| 宝兴县| 巧家县| 饶河县| 浦江县| 金川县| 新龙县| 孟州市| 十堰市| 城固县| 紫金县| 西昌市| 黎城县| 扶沟县| 潼关县| 黑龙江省| 永定县|