现有文件hello.txt,内容为:"你好'\n' 我是中国人"1,打开文本hello.txt #!/usr/bin/perl open f,"hello.txt"; f 为文件句柄,指向
#!/usr/bin/perl-w##########################################################################FileName:test6.pl##########################################################################index(str,substr,p
#!/usr/bin/perl -w ######################################################################### # File Name: test6.pl ################################
copy#!/usr/bin/perl -w ######################################################################### # File Name: change.pl # Author: k
copy#!/usr/bin/perl -w ######################################################################### # File Name: test4.pl # Author: ke
perl
#!/usr/bin/perl-w##########################################################################FileName:test2.pl#Author:kevinxiang#CreatedTime:2014年07月07日星期一14时56分37秒######################################
#!/usr/bin/perl -w ######################################################################### # File Name: test.pl # Author: kevin xi
切片用法可在数组和哈希中提取值数组中取数组my @array = qw(aa bb cc dd);my @select = @array[1,3];print "@select\n";##输出bb dd123456哈希中取值my %hash =&nb
一.条件判断 if ( ) {
1.unless控制结构 类似于独立的else语句; 要么条件为真, 要么执行语句块内的代码; unless(<condition>){code...;} 等价于 if(<condition>){}else{code...;} 也就是当条件为假是执行.unless (0) {
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号