
perl
文章平均质量分 85
linfengfeiye
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Perl文件及目录操作
Perl文件及目录操作转载 2011-02-07 19:17:00 · 554 阅读 · 0 评论 -
Why Not Translate Perl to C?
By Mark-Jason Dominus onJune 27, 2001 12:00 AMPeople often have the idea that automatically translating Perl to Cand then compiling the C will make their Perl programs run faster,because "C转载 2011-12-10 14:17:22 · 728 阅读 · 0 评论 -
Perl获取当前系统时间
Perl获取当前系统时间Perl 2010-12-06 10:41:57 阅读236 评论0 字号:大中小 订阅perl有两个取得时间的函数:localtime和gmtime两个函数的用法一样,区别在于localtime为取得本地时间, gmtime格林威治时间。($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isd转载 2011-12-09 01:22:30 · 5053 阅读 · 0 评论 -
Perl Sort
转自:http://www.sysarch.com/Perl/sort_paper.htmlA Fresh Look at Efficient Perl SortingUri Guttman and Larry RoslerUri Guttman is an independent Perl and Internet consultant; uri@sysarch.转载 2011-12-01 22:27:44 · 2107 阅读 · 0 评论 -
perl特殊字符
常用:$x{} x名字前面是美元符号($),后面是花括号({}),则其为 hash 元素% 要引用整个 hash,使用百分号(“ )作为前缀。前面几页中使用的 hash 的名字为%family_name。$! 系统产生的一些可读的信息,也可能是出错的信息$_ 子函数参数变量自己本身@_ 子程序的私有变量 @ 数组&x 调用子转载 2011-11-27 21:38:30 · 1890 阅读 · 0 评论 -
perl格式化输出
本文转自:http://www.cbi.pku.edu.cn/chinese/documents/perl/perl10.htm 我们已经见过用print函数将原始的未格式化的文本输出到文件,本章讲述如何用函数write和打印格式来生成格式化的输出。一、定义打印格式 定义打印格式的关键字为format,语法为:format formatname =lines_of_out转载 2011-11-24 08:44:30 · 3068 阅读 · 0 评论 -
perl书籍推荐
Recommended books on (or mostly on) Perl follow. References Programming Perl by Larry Wall, Tom Christiansen, and Jon Orwant ISBN 0-596-转载 2011-11-23 21:51:46 · 1863 阅读 · 0 评论 -
perl开发工具大全
ActivePerl一个可以让你任意执行 Perl 程序的工具软件,其包含了包括有 Perl for Win32、Perl for ISAPI、PerlScript、Perl Package Manager四套开发工具程序,可以让你编写出适用于 unix, windows, linux系统的 CGI程序来。。更多ActivePerl信息 ActiveStat转载 2011-11-22 08:19:05 · 2998 阅读 · 0 评论 -
perl one line
不知道有人转贴过无http://www.wgaky.com/index.php/archives/41[原创]Perl One Line By ExamplePerl常用命令行参数概览-e 指定字符串以作为脚本(多个字符串迭加)执行-M/-m 和 use 模块名 一样. 如果不想引入模块的缺省值, 你可以使用 -m. -m模块名 和 use 模块名() 一样.-I转载 2011-11-18 19:37:38 · 1725 阅读 · 0 评论 -
强大的Perl中的正则
转载本站文章请注明,转载自:扶凯[http://www.php-oa.com]本文链接: http://www.php-oa.com/2008/12/20/power-perl.html Perl的正则是相当强大的Perl 程序中,正则表达式有三种存在形式分别是(1 模式匹配:m// #平时我们简写 // ,略去m,三个参数/i不区分大小写 /s匹配转载 2011-11-19 16:34:03 · 1365 阅读 · 0 评论 -
在Perl程序中显示进度条之多姿多彩的自写代码
在Perl程序中显示进度条之多姿多彩的自写代码yixf 于 2011-11-29,09:57 方法一12345678#!/usr/bin/perl my $max = 10;for ( 1 .. $max ) { my $percent = $_ / $max * 100; print "$_ - $p转载 2012-02-02 05:30:57 · 1399 阅读 · 0 评论