perl中没有判断字符串包含的函数,可以用正则表达式来实现这个功能,下面代码判断$str1是否包含$str2。
if($str1 =~ /$str2/) { ...}
posted on 2011-10-12 17:35 perlman 阅读(12841) 评论(0) 编辑 收藏 举报