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

主頁 > 知識庫 > perl文件操作的一些例子分享

perl文件操作的一些例子分享

熱門標簽:買了外呼系統不想用了怎么辦 真人語音電銷機器人系統 電話機器人電話卡封號怎么辦 浦東上海400開頭的電話申請 邯鄲外呼調研線路 開封百應電銷機器人聯系方式 樂昌電話機器人 北京語音電銷機器人價格 武漢呼叫中心外呼系統線路商

刪除文件

使用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 = FILE> ;
    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 = FILE> ;
    print $slurp, "\n" ;
}
test() ;
1;

最好的方法是使用模塊,這樣比自己寫安全,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文件操作的一些例子分享》,本文關鍵詞  perl,文件,操作,的,一些,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《perl文件操作的一些例子分享》相關的同類信息!
  • 本頁收集關于perl文件操作的一些例子分享的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 论坛| 乌什县| 永宁县| 津市市| 紫阳县| 白沙| 汤阴县| 清镇市| 亳州市| 铜陵市| 三明市| 新兴县| 澄江县| 栖霞市| 南宁市| 孝义市| 沅江市| 阳谷县| 新郑市| 四平市| 泽州县| 洪洞县| 英吉沙县| 彩票| 竹溪县| 云阳县| 施秉县| 岳西县| 贡嘎县| 葫芦岛市| 通州市| 定襄县| 井研县| 长海县| 安龙县| 刚察县| 孝感市| 临潭县| 谢通门县| 济阳县| 宁强县|