
perl
fnoodles
这个作者很懒,什么都没留下…
展开
-
转一篇chinaunix论坛上的Perl CGI问题
转帖:http://bbs.chinaunix.net/thread-2323339-1-1.html原创 2011-09-13 10:31:08 · 140 阅读 · 0 评论 -
perl处理properties文件
使用Config::Properties模块,详情请见:http://search.cpan.org/~salva/Config-Properties-1.70/Properties.pm use Cwd;BEGIN { $ipath = getcwd . "/lib/perl/pm/"; push @INC, $ipath;}use Config::Proper...原创 2011-10-15 14:54:37 · 248 阅读 · 0 评论 -
Perl解析传入参数的一种方式
如果你自己写了一个perl脚本,指定传入参数,如:xxxscript.pl -f <filename> -s <string>则可以通过下面的代码解决: #-------------------------------------------------------------------------# 解析输入参数sub process_args {...原创 2011-10-15 14:59:06 · 507 阅读 · 0 评论 -
Perl DBI文档
Stack Overflow上关于SQL*Plus inside Perl script的问答:http://stackoverflow.com/questions/1727623/sqlplus-inside-perl-script原创 2011-10-19 11:13:41 · 108 阅读 · 0 评论 -
perl语法网罗
perl的.和x操作符===========================================‘.' 符号可以用来连接两个字符串。'x' 符号后接 1 数字,表示让它左边的字符串重复打印该数字所表示的次数。 ...原创 2011-10-26 16:49:57 · 100 阅读 · 0 评论 -
Perl Mime模块
Base64:http://perldoc.perl.org/MIME/Base64.html 文档中:The returned encoded string is broken into lines of no more than 76 characters each and it will end with $eol unless it is empty. Pass an empt...原创 2011-11-15 14:03:06 · 255 阅读 · 0 评论