
perl
iteye_16015
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Perl 学习小结
Perl 的意思 Pracctical Extraction and Report Language 实用摘录与报表语言 Pathologically Eclectic Rubbish Lister 病态折中式垃圾列表器 是先有Perl这个词,后有展开诠释,两种解释都被Larry认可. Perl 的原则 一:数据类型 1.常量 ...2011-08-11 17:44:32 · 131 阅读 · 0 评论 -
Perl 文件操作
一:打开文件 open(MyFile, "文件") or die("Can't open file. $!"); open(MyFile, "<文件") || die("Can't open file."); // 同上,以读的模式打开文件 open(MyFile, ">文件") || die("Can't write file."2011-08-16 22:44:17 · 209 阅读 · 0 评论