Getopt::Std模块的使用: 初始设置: 在程序中加入如下代码: use Getopt::Std; use vars qw($opt_d $opt_f $o
在perl中,join()和split()的功能是相反的。 一.join函数 1.作用:把数组元素或者几个字符串通过分隔符连接成单个字符串 2.格式:join(DELIMITER,ARRAY或string[1,2,3...]) 3.实例:#join $name="Tom"; $birth="01/02/86"; $addr="chengdu.sichuan";
Perl has two operators <=> and cmp, which are very useful when wishing to sort arrays. $a <=> $b returns -1 if $a is numerically lesser than $b, 1 if it's greater, and zero if they are equ
1.在单引号里,\n不是换行,只是反斜线和字母n两个字符2.2**3表示2的三次方3.<STDIN>让perl程序读取从键盘输入的值 4.<STDIN>返回的字符串,一般都会在最后跟有一个换行符,用chomp能移除换行符,举例:#!/usr/bin/perlchomp($c=<STDIN>); if($c eq "a"){ print "match\
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号