码迷,mamicode.com
首页 > 其他好文 > 详细

perl 文件操作学习

时间:2018-01-20 21:34:41      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:rgb   order   txt   word   color   句柄   命令   print   中国   

现有文件hello.txt,内容为:"你好'\n' 我是中国人"

1,打开文本hello.txt

      #!/usr/bin/perl

      open f,"hello.txt";

    f 为文件句柄,指向打开的文件


2,逐行读取文本hello.txt

      #!/usr/bin/perl

      open f,"< hello.txt";

      while($line=<f>){

          print $line;

       }

       close f;

      结果:你好

                 我是中国人

     或者:print <f>;

     结果:你好

                我是中国人

     <> 为取行操作符


3,向a.txt中写入内容

   #!/usr/bin/perl

    open f,">a.txt";

    print f "hello,world\nsee you\n";

    close f;

    如果a.txt原本有内容,则原内容将会被擦除,a.txt的内容为

                    hello,world 

                    see you

4,向a.txt中追加内容

    #!/usr/bin/perl

      open f,">>a.txt";

      print f "thank you\n";

      close f;

      a.txt的内容为 

              hello,world

              see you

              thank you

     

   print 相当于写命令,别丢了语句结尾的 “;"


perl 文件操作学习

标签:rgb   order   txt   word   color   句柄   命令   print   中国   

原文地址:http://blog.51cto.com/346054/2063242

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!