perl第一篇 perl变量
#注释
#!/usr/bin/perl perl文件头
print 打印字符串
"abc\n"可转意的字符串
'abc\n'不可转意的字符串
'abc'.'def' 字符串连接
$var='abc'给变量赋值
print $var 打印变量值
; 表示每行语句的结束
例子:
#print 'hello world!'
#print 'hello world!\n'
#print "hello world!\n"
$L="\n";
$msg='hello world.$L';
print $msg;
============================================================================================
perl第二篇
if(判断语句){...}else{...}
gt大于 、eq等于 、lt 小于
数字0代表假,字符串空代表假
控制台输入
chomp去掉回车符函数.
例子:
if(5 gt 4){
print "good\n";
}else{
print "sorry\n";
}
if(0){
print "0 is true\n";
}else{
print "0 is false\n";
}
if(1){
print "1 is true\n";
}else{
print "1 is false\n";
}
if(''){
print "kong is true\n";
}else{
print "kong is false\n";
}
if("abc" gt "bcd"){
print "abc is biger\n";
}else{
print "bcd is biger\n";
}
阅读(1926) | 评论(2) | 转发(0) |