码迷,mamicode.com
首页 > 其他好文 > 详细

perl中==操作和eq操作区别

时间:2014-08-06 18:13:44      阅读:579      评论:0      收藏:0      [点我收藏+]

标签:style   color   div   line   字符串   mil   on   height   

$str1 = "1 -the first str";

$str2 = "1 -the second str";

print "numerically  equal\n" if($str1 == $str2);

print "stringwise equal\n" if($str1 eq $str2);

 

结果只有numerically equal。 PS:perl会自动转换字符串。$str1 == $str2中的值都是1

 
实际上也就是说==返回是是否数值相等,而eq返回的是字符相等

 

 

Perl字符串比较,不要用==,要用eq

perl中==操作和eq操作区别,布布扣,bubuko.com

perl中==操作和eq操作区别

标签:style   color   div   line   字符串   mil   on   height   

原文地址:http://www.cnblogs.com/notlate/p/3894849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!