Help for this page

Select Code to Download


  1. or download this
    $class .= ' right' unless grep($text =~ /$_/i, @big_images);
    
  2. or download this
    use strict;
    use warnings;
    ...
    ok grep ($text =~ /$_/i, 'foo', 'Smart', 'bar'), 'Match one of three';
    ok grep ($text =~ /$_/i, 'foo', 'Smart', 'art'), 'Match two of three';
    ok !grep ($text =~ /$_/i, 'foo', 'baz'), 'Match none';