Help for this page

Select Code to Download


  1. or download this
    do_something(@compare)
      if grep { $test =~ $_ } @compare;
    
  2. or download this
    use List::Util 'first';
    
    do_something(@compare)
      if first { $test =~ $_ } @compare;