Help for this page

Select Code to Download


  1. or download this
    @arr=('cool','guy','here');
    $str1="I am cool";
    ...
          last;
       }
    }
    
  2. or download this
    @arr=(cool,guy,here);
    $str1="I am cool";
    if($str1 =~ m/@arr/){
          print "Matched";
    }