博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Perl】模块 Tie::File
阅读量:6150 次
发布时间:2019-06-21

本文共 1142 字,大约阅读时间需要 3 分钟。

 

1 Tie::File

建立一个list和file的关系,对list的操作会反映到file上去。

 

use Tie::File;tie @array, 'Tie::File', filename or die ...;$array[13] = 'blah';     # line 13 of the file is now 'blah'print $array[42];        # display line 42 of the file$n_recs = @array;        # how many records are in the file?$#array -= 2;            # chop two records off the endfor (@array) {  s/PERL/Perl/g;         # Replace PERL with Perl everywhere in the file}# These are just like regular push, pop, unshift, shift, and splice# Except that they modify the file in the way you would expectpush @array, new recs...;my $r1 = pop @array;unshift @array, new recs...;my $r2 = shift @array;@old_recs = splice @array, 3, 7, new recs...;untie @array;            # all finished

2 应用举例

 

use Tie::File;my @array;my $filename = "a.txt";tie(@array,'Tie::File',$filename) or die;print "$array[3]\n";print "$#array\n";$array[3] = "hello";$array[1] = "world";splice(@array, 1, 0, "insert into 0 and 1 line");delete $array[$#array];$#array -= 2;print pop @array;untie($array);

3 more help

perldoc Tie::File

 

 

Author: visaya fan

Date: 2011-10-29 16:46:46

HTML generated by org-mode 6.33x in emacs 23

转载地址:http://hvgya.baihongyu.com/

你可能感兴趣的文章
模块化安装与删除openstack的dev(control、compute)与folsom(control)版本
查看>>
SCVMM2012部署之三:安装VMM自助服务门户
查看>>
远程管理Windows Server Core的磁盘
查看>>
虚机不能启动的特例思考
查看>>
SQL Server编程系列(1):SMO介绍
查看>>
在VMware网络测试“专用VLAN”功能
查看>>
使用Formik轻松开发更高质量的React表单(三)<Formik />解析
查看>>
也问腾讯:你把用户放在什么位置?
查看>>
CSS Sprites 样式生成工具(bg2css)
查看>>
[转]如何重构代码--重构计划
查看>>
类中如何对list泛型做访问器??
查看>>
C++解析XML--使用CMarkup类解析XML
查看>>
P2P应用层组播
查看>>
Sharepoint学习笔记—修改SharePoint的Timeouts (Execution Timeout)
查看>>
CSS引入的方式有哪些? link和@import的区别?
查看>>
Redis 介绍2——常见基本类型
查看>>
asp.net开发mysql注意事项
查看>>
(转)Cortex-M3 (NXP LPC1788)之EEPROM存储器
查看>>
ubuntu set defult jdk
查看>>
ByteBuffer 理解
查看>>